diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-10-13 19:25:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-10-16 23:52:44 +0100 |
commit | 001f8ee0adf703f0a9f90ae9e8f3674935a18c2c (patch) | |
tree | 4f94eb05e0fdc0b5c4d68fa1a35a275aec1cf6ed /meta/recipes-devtools/go/go-cross-canadian.inc | |
parent | 68e77cfb8ac40926eb09f982cc835a0378ad029a (diff) | |
download | poky-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-cross-canadian.inc')
-rw-r--r-- | meta/recipes-devtools/go/go-cross-canadian.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-cross-canadian.inc b/meta/recipes-devtools/go/go-cross-canadian.inc index f3ab7351db..8afda6b2ce 100644 --- a/meta/recipes-devtools/go/go-cross-canadian.inc +++ b/meta/recipes-devtools/go/go-cross-canadian.inc | |||
@@ -41,6 +41,7 @@ native_goroot=\`readlink -f \$here/../../lib/${TARGET_SYS}/go\` | |||
41 | export GOARCH="${TARGET_GOARCH}" | 41 | export GOARCH="${TARGET_GOARCH}" |
42 | export GOOS="${TARGET_GOOS}" | 42 | export GOOS="${TARGET_GOOS}" |
43 | test -n "\$GOARM" || export GOARM="${TARGET_GOARM}" | 43 | test -n "\$GOARM" || export GOARM="${TARGET_GOARM}" |
44 | test -n "\$GO386" || export GO386="${TARGET_GO386}" | ||
44 | export GOTOOLDIR="\$native_goroot/pkg/tool/${HOST_GOTUPLE}" | 45 | export GOTOOLDIR="\$native_goroot/pkg/tool/${HOST_GOTUPLE}" |
45 | test -n "\$GOROOT" || export GOROOT="\$OECORE_TARGET_SYSROOT/${target_libdir}/go" | 46 | test -n "\$GOROOT" || export GOROOT="\$OECORE_TARGET_SYSROOT/${target_libdir}/go" |
46 | \$here/../../lib/${TARGET_SYS}/go/bin/$1 "\$@" | 47 | \$here/../../lib/${TARGET_SYS}/go/bin/$1 "\$@" |