From: Joe Slater Date: Tue, 6 Jun 2017 18:47:38 +0000 (-0700) Subject: go: do not try to build for powerpc64 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~21164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=358c2daee23eaa778e6a4f356b05b2d5a248fdd1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git go: do not try to build for powerpc64 Add powerpc64 to the incompatible host list. Signed-off-by: Joe Slater Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/go/go.inc b/meta/recipes-devtools/go/go.inc index 25437ddfe34..91d040d4831 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}"