From: Joe Slater Date: Tue, 17 Oct 2017 22:03:25 +0000 (-0700) Subject: goarch: There is no GOARCH defined for mips64-n32 X-Git-Tag: uninative-1.8~1292 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fe72090a30d1fc810de3dd07350e5e6afba745de;p=openembedded-core.git 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 Signed-off-by: Ross Burton --- 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"