1
0
mirror of https://github.com/golang/go synced 2024-11-18 04:34:52 -07:00

cmd/link: fix addition of -Wl,-z,relro

Not sure how I managed to do this, or get it past review.

Change-Id: I141b97ef8e09dcc9c910c45493a584a3dced2b28
Reviewed-on: https://go-review.googlesource.com/14634
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Michael Hudson-Doyle 2015-09-16 22:06:16 +12:00
parent b0507f1579
commit 9a6a8a0586

View File

@ -1001,9 +1001,9 @@ func hostlink() {
// anyway. // anyway.
argv = append(argv, "-Wl,-Bsymbolic-functions") argv = append(argv, "-Wl,-Bsymbolic-functions")
if UseRelro() { if UseRelro() {
argv = append(argv, "-shared") argv = append(argv, "-Wl,-z,relro")
} }
argv = append(argv, "-Wl,-z,relro") argv = append(argv, "-shared")
} }
if Linkshared && Iself { if Linkshared && Iself {