summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/populate_sdk_base.bbclass3
-rw-r--r--meta/conf/fragments/yocto-autobuilder/autobuilder.conf2
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 ??= ""
62SDK_TOOLCHAIN_LANGS:remove:sdkmingw32 = "rust" 62SDK_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
64SDK_TOOLCHAIN_LANGS:remove:mipsarchn32 = "rust" 64SDK_TOOLCHAIN_LANGS:remove:mipsarchn32 = "rust"
65# go will not build for x86-x32 or mingw
66SDK_TOOLCHAIN_LANGS:remove:linux-gnux32 = "go"
67SDK_TOOLCHAIN_LANGS:remove:sdkmingw32 = "go"
65 68
66TOOLCHAIN_HOST_TASK ?= " \ 69TOOLCHAIN_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'
9SDK_EXT_TYPE = 'minimal' 9SDK_EXT_TYPE = 'minimal'
10SDK_INCLUDE_TOOLCHAIN = '1' 10SDK_INCLUDE_TOOLCHAIN = '1'
11ESDK_LOCALCONF_REMOVE:append = 'BB_HASHSERVE' 11ESDK_LOCALCONF_REMOVE:append = 'BB_HASHSERVE'
12SDK_TOOLCHAIN_LANGS += 'rust' 12SDK_TOOLCHAIN_LANGS += 'go rust'
13 13