mirror of https://github.com/golang/go.git
cmd/link: fix dynamic interpreter path for musl-based linux amd64
Change-Id: Ia07e237647b419b73d6faa11baa32e6176c8b7ce Reviewed-on: https://go-review.googlesource.com/c/go/+/456215 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
eaf0e3d465
commit
0aad4d3257
|
|
@ -65,7 +65,7 @@ func Init() (*sys.Arch, ld.Arch) {
|
|||
TLSIEtoLE: tlsIEtoLE,
|
||||
|
||||
Linuxdynld: "/lib64/ld-linux-x86-64.so.2",
|
||||
LinuxdynldMusl: "/lib/ld-musl-x84_64.so.1",
|
||||
LinuxdynldMusl: "/lib/ld-musl-x86_64.so.1",
|
||||
Freebsddynld: "/libexec/ld-elf.so.1",
|
||||
Openbsddynld: "/usr/libexec/ld.so",
|
||||
Netbsddynld: "/libexec/ld.elf_so",
|
||||
|
|
|
|||
Loading…
Reference in New Issue