summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorMatt Madison <matt@madison.systems>2017-09-22 17:58:21 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-26 11:05:00 +0100
commitaf1ee398b3dcedaa9b555391a0768d7b9ca419e3 (patch)
tree6539bdc8e185b4ac47e563ed6e205c855ee02533 /meta/recipes-devtools
parent988e253f47dd84d6b90efad1c941998bc3e5a117 (diff)
downloadpoky-af1ee398b3dcedaa9b555391a0768d7b9ca419e3.tar.gz
go: disable PIE flags for cgo
If the security_flags.inc file is included, gcc will do PIE builds by default. These flags need to be disabled for go packages that use cgo. (From OE-Core rev: 5d84042852380fc88b9be8df0e4eeac612c2a6da) Signed-off-by: Matt Madison <matt@madison.systems> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/go/go-target.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-target.inc b/meta/recipes-devtools/go/go-target.inc
index b88d0166e5..6065c3c80d 100644
--- a/meta/recipes-devtools/go/go-target.inc
+++ b/meta/recipes-devtools/go/go-target.inc
@@ -18,6 +18,9 @@ GO_LDFLAGS = ""
18GO_LDFLAGS_class-nativesdk = "-linkmode external" 18GO_LDFLAGS_class-nativesdk = "-linkmode external"
19export GO_LDFLAGS 19export GO_LDFLAGS
20 20
21SECURITY_CFLAGS = "${SECURITY_NOPIE_CFLAGS}"
22SECURITY_LDFLAGS = ""
23
21do_configure[noexec] = "1" 24do_configure[noexec] = "1"
22 25
23do_compile() { 26do_compile() {