aboutsummaryrefslogtreecommitdiffstats
path: root/community/go/set-external-linker.patch
diff options
context:
space:
mode:
authorRoberto Oliveira <robertoguimaraes8@gmail.com>2017-06-08 14:33:20 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-06-08 14:44:50 +0000
commit80d3e2de0e7ec8f262ab4e39553062a81758f703 (patch)
tree78a9ef2a3df4ab10d19c831dc4d1cb6638ed0b5b /community/go/set-external-linker.patch
parent70df626926fde654b2267bd60b1324ca904d66e8 (diff)
downloadaports-80d3e2de0e7ec8f262ab4e39553062a81758f703.tar.bz2
aports-80d3e2de0e7ec8f262ab4e39553062a81758f703.tar.xz
community/go: fix external linker for ppc64le
The external linker for ppc64le was pointing to /lib64/ld-musl-ppc64le.so.1 but the valid path for alpine ppc64le is /lib/ld-musl-powerpc64le.so.1. This issue was found by Lynn Boger from IBM go compiler team.
Diffstat (limited to 'community/go/set-external-linker.patch')
-rw-r--r--community/go/set-external-linker.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/community/go/set-external-linker.patch b/community/go/set-external-linker.patch
index 5632368fb0..5727036d48 100644
--- a/community/go/set-external-linker.patch
+++ b/community/go/set-external-linker.patch
@@ -72,7 +72,7 @@ index 6eff2f4..1f3c0be 100644
// TODO(austin): ABI v1 uses /usr/lib/ld.so.1
- ld.Thearch.Linuxdynld = "/lib64/ld64.so.1"
-+ ld.Thearch.Linuxdynld = "/lib64/ld-musl-ppc64le.so.1"
++ ld.Thearch.Linuxdynld = "/lib/ld-musl-powerpc64le.so.1"
ld.Thearch.Freebsddynld = "XXX"
ld.Thearch.Openbsddynld = "XXX"