diff options
-rw-r--r-- | meta/classes-recipe/populate_sdk_base.bbclass | 3 | ||||
-rw-r--r-- | meta/conf/fragments/yocto-autobuilder/autobuilder.conf | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes-recipe/populate_sdk_base.bbclass b/meta/classes-recipe/populate_sdk_base.bbclass index e6685cde97..948e6334ee 100644 --- a/meta/classes-recipe/populate_sdk_base.bbclass +++ b/meta/classes-recipe/populate_sdk_base.bbclass | |||
@@ -62,6 +62,9 @@ SDK_TOOLCHAIN_LANGS ??= "" | |||
62 | SDK_TOOLCHAIN_LANGS:remove:sdkmingw32 = "rust" | 62 | SDK_TOOLCHAIN_LANGS:remove:sdkmingw32 = "rust" |
63 | # libstd-rs doesn't build for mips n32 with compiler constraint errors | 63 | # libstd-rs doesn't build for mips n32 with compiler constraint errors |
64 | SDK_TOOLCHAIN_LANGS:remove:mipsarchn32 = "rust" | 64 | SDK_TOOLCHAIN_LANGS:remove:mipsarchn32 = "rust" |
65 | # go will not build for x86-x32 or mingw | ||
66 | SDK_TOOLCHAIN_LANGS:remove:linux-gnux32 = "go" | ||
67 | SDK_TOOLCHAIN_LANGS:remove:sdkmingw32 = "go" | ||
65 | 68 | ||
66 | TOOLCHAIN_HOST_TASK ?= " \ | 69 | TOOLCHAIN_HOST_TASK ?= " \ |
67 | nativesdk-packagegroup-sdk-host \ | 70 | nativesdk-packagegroup-sdk-host \ |
diff --git a/meta/conf/fragments/yocto-autobuilder/autobuilder.conf b/meta/conf/fragments/yocto-autobuilder/autobuilder.conf index e3bac34339..85987b0899 100644 --- a/meta/conf/fragments/yocto-autobuilder/autobuilder.conf +++ b/meta/conf/fragments/yocto-autobuilder/autobuilder.conf | |||
@@ -9,5 +9,5 @@ IMAGE_CLASSES += 'testimage' | |||
9 | SDK_EXT_TYPE = 'minimal' | 9 | SDK_EXT_TYPE = 'minimal' |
10 | SDK_INCLUDE_TOOLCHAIN = '1' | 10 | SDK_INCLUDE_TOOLCHAIN = '1' |
11 | ESDK_LOCALCONF_REMOVE:append = 'BB_HASHSERVE' | 11 | ESDK_LOCALCONF_REMOVE:append = 'BB_HASHSERVE' |
12 | SDK_TOOLCHAIN_LANGS += 'rust' | 12 | SDK_TOOLCHAIN_LANGS += 'go rust' |
13 | 13 | ||