diff options
author | Joe Slater <jslater@windriver.com> | 2017-06-06 11:47:38 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-09 17:12:14 +0100 |
commit | d5214ebaf7ba115cf5ceeffc274dbfe44518e63b (patch) | |
tree | d609c274c2c6b6616e84fb8e20f30b39ab41eaf3 /meta/recipes-devtools | |
parent | 53918ce80a246df30fe48231b86422c92b1de960 (diff) | |
download | poky-d5214ebaf7ba115cf5ceeffc274dbfe44518e63b.tar.gz |
go: do not try to build for powerpc64
Add powerpc64 to the incompatible host list.
(From OE-Core rev: 358c2daee23eaa778e6a4f356b05b2d5a248fdd1)
Signed-off-by: Joe Slater <jslater@windriver.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')
-rw-r--r-- | meta/recipes-devtools/go/go.inc | 3 |
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" | |||
14 | 14 | ||
15 | # x32 ABI is not supported on go compiler so far | 15 | # x32 ABI is not supported on go compiler so far |
16 | COMPATIBLE_HOST_linux-gnux32 = "null" | 16 | COMPATIBLE_HOST_linux-gnux32 = "null" |
17 | # ppc32 is not supported in go compilers | 17 | # ppc is not supported in go compilers |
18 | COMPATIBLE_HOST_powerpc = "null" | 18 | COMPATIBLE_HOST_powerpc = "null" |
19 | COMPATIBLE_HOST_powerpc64 = "null" | ||
19 | 20 | ||
20 | export GOHOSTOS = "${BUILD_GOOS}" | 21 | export GOHOSTOS = "${BUILD_GOOS}" |
21 | export GOHOSTARCH = "${BUILD_GOARCH}" | 22 | export GOHOSTARCH = "${BUILD_GOARCH}" |