mirror of
https://github.com/gogs/gogs.git
synced 2025-05-03 22:24:06 +00:00
In order to have an up to date Docker image based on alpine 3.5 and having Gogs built with Go 1.8 Refs: [ #4145 ]
16 lines
567 B
Diff
16 lines
567 B
Diff
diff --git a/src/cmd/link/internal/ld/lib.go b/src/cmd/link/internal/ld/lib.go
|
|
index 14f4fa9..5599307 100644
|
|
--- a/src/cmd/link/internal/ld/lib.go
|
|
+++ b/src/cmd/link/internal/ld/lib.go
|
|
@@ -1272,6 +1272,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 l.Debugvlog != 0 {
|
|
l.Logf("%5.2f host link:", obj.Cputime())
|
|
for _, v := range argv {
|