aboutsummaryrefslogtreecommitdiffstats
path: root/community/go/no-pic.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/go/no-pic.patch')
-rw-r--r--community/go/no-pic.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/community/go/no-pic.patch b/community/go/no-pic.patch
new file mode 100644
index 0000000000..5a4e3966d6
--- /dev/null
+++ b/community/go/no-pic.patch
@@ -0,0 +1,16 @@
+diff --git a/src/cmd/link/internal/ld/lib.go b/src/cmd/link/internal/ld/lib.go
+index 8ccbec9dd634..4e96bfadc260 100644
+--- a/src/cmd/link/internal/ld/lib.go
++++ b/src/cmd/link/internal/ld/lib.go
+@@ -1071,6 +1071,11 @@ func hostlink() {
+ argv = append(argv, peimporteddlls()...)
+ }
+
++ // The Go linker does not currently support building PIE
++ // executables when using the external linker. See:
++ // https://github.com/golang/go/issues/6940
++ argv = append(argv, "-fno-PIC")
++
+ if Debug['v'] != 0 {
+ fmt.Fprintf(&Bso, "host link:")
+ for _, v := range argv {