summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-target.inc
diff options
context:
space:
mode:
authorPaul Barker <pbarker@toganlabs.com>2017-10-13 19:25:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-10-16 23:52:44 +0100
commit001f8ee0adf703f0a9f90ae9e8f3674935a18c2c (patch)
tree4f94eb05e0fdc0b5c4d68fa1a35a275aec1cf6ed /meta/recipes-devtools/go/go-target.inc
parent68e77cfb8ac40926eb09f982cc835a0378ad029a (diff)
downloadpoky-001f8ee0adf703f0a9f90ae9e8f3674935a18c2c.tar.gz
go: Export correct GO386 value for target
When compiling go code for the target we need to ensure that GO386 is exported and set appropriately. This controls whether sse/sse2 instructions are used to implement floating-point operations or not. (From OE-Core rev: eba5fd5f594d65d311fa7564fa4b243248cb212a) Signed-off-by: Paul Barker <pbarker@toganlabs.com> 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.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-target.inc b/meta/recipes-devtools/go/go-target.inc
index b9689c03c4..cac5d78227 100644
--- a/meta/recipes-devtools/go/go-target.inc
+++ b/meta/recipes-devtools/go/go-target.inc
@@ -7,6 +7,7 @@ export GOHOSTARCH = "${BUILD_GOARCH}"
7export GOOS = "${TARGET_GOOS}" 7export GOOS = "${TARGET_GOOS}"
8export GOARCH = "${TARGET_GOARCH}" 8export GOARCH = "${TARGET_GOARCH}"
9export GOARM = "${TARGET_GOARM}" 9export GOARM = "${TARGET_GOARM}"
10export GO386 = "${TARGET_GO386}"
10export GOROOT_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/go" 11export GOROOT_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/go"
11export GOROOT_FINAL = "${libdir}/go" 12export GOROOT_FINAL = "${libdir}/go"
12export CGO_ENABLED = "1" 13export CGO_ENABLED = "1"