summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-target.inc
diff options
context:
space:
mode:
authorMatt Madison <matt@madison.systems>2017-09-14 16:22:28 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-21 09:05:50 +0100
commit975246ffe6e053820c6929454c3d73fb329c54a1 (patch)
treee0cb1d59e2621977025fc3ec8179f1d38e496fb9 /meta/recipes-devtools/go/go-target.inc
parent82ba908d86a75401c86b966d1579a9e5e00ff05d (diff)
downloadpoky-975246ffe6e053820c6929454c3d73fb329c54a1.tar.gz
go: fix linking issues for nativesdk builds
Switch to using an external linker for nativesdk go, go-runtime, and go package builds, which works more reliably when building 32-bit SDKs. (From OE-Core rev: f76779f7ef6636355a5aa5741a736f5234a67fdb) Signed-off-by: Matt Madison <matt@madison.systems> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go/go-target.inc')
-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 0d80bf0d97..b88d0166e5 100644
--- a/meta/recipes-devtools/go/go-target.inc
+++ b/meta/recipes-devtools/go/go-target.inc
@@ -14,6 +14,9 @@ export CC_FOR_TARGET = "${CC}"
14export CXX_FOR_TARGET = "${CXX}" 14export CXX_FOR_TARGET = "${CXX}"
15export GO_TARGET_INSTALL = "cmd" 15export GO_TARGET_INSTALL = "cmd"
16export GO_FLAGS = "-a" 16export GO_FLAGS = "-a"
17GO_LDFLAGS = ""
18GO_LDFLAGS_class-nativesdk = "-linkmode external"
19export GO_LDFLAGS
17 20
18do_configure[noexec] = "1" 21do_configure[noexec] = "1"
19 22