aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go
diff options
context:
space:
mode:
authorJoe Slater <jslater@windriver.com>2017-06-06 11:47:38 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-09 17:12:05 +0100
commit358c2daee23eaa778e6a4f356b05b2d5a248fdd1 (patch)
treeddb203ead15831c6a4cd5262689bfb354828ff1e /meta/recipes-devtools/go
parent6866ad53c5d49781002470195b4aae1ad1afde5c (diff)
downloadopenembedded-core-contrib-358c2daee23eaa778e6a4f356b05b2d5a248fdd1.tar.gz
go: do not try to build for powerpc64
Add powerpc64 to the incompatible host list. Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/go')
-rw-r--r--meta/recipes-devtools/go/go.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/go/go.inc b/meta/recipes-devtools/go/go.inc
index 25437ddfe3..91d040d483 100644
--- a/meta/recipes-devtools/go/go.inc
+++ b/meta/recipes-devtools/go/go.inc
@@ -14,8 +14,9 @@ INHIBIT_SYSROOT_STRIP = "1"
# x32 ABI is not supported on go compiler so far
COMPATIBLE_HOST_linux-gnux32 = "null"
-# ppc32 is not supported in go compilers
+# ppc is not supported in go compilers
COMPATIBLE_HOST_powerpc = "null"
+COMPATIBLE_HOST_powerpc64 = "null"
export GOHOSTOS = "${BUILD_GOOS}"
export GOHOSTARCH = "${BUILD_GOARCH}"