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 13:54:45 +0000 |
commit | fe72090a30d1fc810de3dd07350e5e6afba745de (patch) | |
tree | 487ad2119f77d2788e3d84ff8fd6f9a7bbd3a43a | |
parent | ea6abed9dd638544f406ec2176b2c926bb1acf9b (diff) | |
download | openembedded-core-fe72090a30d1fc810de3dd07350e5e6afba745de.tar.gz openembedded-core-fe72090a30d1fc810de3dd07350e5e6afba745de.tar.bz2 openembedded-core-fe72090a30d1fc810de3dd07350e5e6afba745de.zip |
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.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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" COMPATIBLE_HOST_linux-muslx32 = "null" COMPATIBLE_HOST_powerpc = "null" COMPATIBLE_HOST_powerpc64 = "null" +COMPATIBLE_HOST_mipsarchn32 = "null" ARM_INSTRUCTION_SET = "arm" TUNE_CCARGS_remove = "-march=mips32r2" |