]> code.ossystems Code Review - openembedded-core.git/commitdiff
go: do not try to build for powerpc64
authorJoe Slater <jslater@windriver.com>
Tue, 6 Jun 2017 18:47:38 +0000 (11:47 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 9 Jun 2017 16:12:05 +0000 (17:12 +0100)
Add powerpc64 to the incompatible host list.

Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/go/go.inc

index 25437ddfe3485ba5056fdbe39e8e2ceb21710e04..91d040d4831248e28471719150fe3050ea198268 100644 (file)
@@ -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}"