diff options
author | Joe Slater <jslater@windriver.com> | 2017-10-17 15:03:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-05 22:33:23 +0000 |
commit | 5b6bb4fcb54f7ad8edef4f09e0e98546edce4c2d (patch) | |
tree | edbef04e43089f02a55e8dff8009e1c1e3679cea /meta/classes | |
parent | 1aa7e310c21b15f52f84b9f61ee6d4edac5d97a5 (diff) | |
download | poky-5b6bb4fcb54f7ad8edef4f09e0e98546edce4c2d.tar.gz |
goarch: There is no GOARCH defined for mips64-n32
Defeat building for mipsarchn32 because there is no corresponding
GOARCH. Neither "mips" nor "mips64" allows go-runtime to compile.
Existing mips32 code assumes the o32 ABI.
(From OE-Core rev: fe72090a30d1fc810de3dd07350e5e6afba745de)
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/classes')
-rw-r--r-- | meta/classes/goarch.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass index 653f035739..663c9ffc3d 100644 --- a/meta/classes/goarch.bbclass +++ b/meta/classes/goarch.bbclass | |||
@@ -29,6 +29,7 @@ COMPATIBLE_HOST_linux-gnux32 = "null" | |||
29 | COMPATIBLE_HOST_linux-muslx32 = "null" | 29 | COMPATIBLE_HOST_linux-muslx32 = "null" |
30 | COMPATIBLE_HOST_powerpc = "null" | 30 | COMPATIBLE_HOST_powerpc = "null" |
31 | COMPATIBLE_HOST_powerpc64 = "null" | 31 | COMPATIBLE_HOST_powerpc64 = "null" |
32 | COMPATIBLE_HOST_mipsarchn32 = "null" | ||
32 | ARM_INSTRUCTION_SET = "arm" | 33 | ARM_INSTRUCTION_SET = "arm" |
33 | TUNE_CCARGS_remove = "-march=mips32r2" | 34 | TUNE_CCARGS_remove = "-march=mips32r2" |
34 | 35 | ||