summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-19 18:05:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-09-20 23:51:11 +0100
commit84e17003c6098007f896ef301449a4748f9720fe (patch)
tree44a3289010c88e5a9db6cb9a0d0f41f5debdab4b /meta/classes-recipe/image.bbclass
parent36397b6a17be9cb3366d91a59a12317b4c7eb493 (diff)
downloadpoky-84e17003c6098007f896ef301449a4748f9720fe.tar.gz
multilib: fix SSTATE_ARCHS for multilib usage
When building multilibs, we need to inject the multilib sstate pkgarch into SSTATE_ARCHS so the list forms a complete search path. Add a tweak to do this. PACKAGE_ARCH defaults to TUNE_PKGARCH so this is equivalent and just guards against recipes changing the value which may have other unwanted side effects. (From OE-Core rev: 37126ffc7ccbd3df57ebbd8e581d158f03bb3b4c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/image.bbclass')
-rw-r--r--meta/classes-recipe/image.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes-recipe/image.bbclass b/meta/classes-recipe/image.bbclass
index 4f00162e78..7231fad940 100644
--- a/meta/classes-recipe/image.bbclass
+++ b/meta/classes-recipe/image.bbclass
@@ -96,6 +96,7 @@ USE_DEPMOD ?= "1"
96PID = "${@os.getpid()}" 96PID = "${@os.getpid()}"
97 97
98PACKAGE_ARCH = "${MACHINE_ARCH}" 98PACKAGE_ARCH = "${MACHINE_ARCH}"
99SSTATE_ARCHS_TUNEPKG = "${@all_multilib_tune_values(d, 'TUNE_PKGARCH')}"
99 100
100LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot" 101LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
101LDCONFIGDEPEND:libc-musl = "" 102LDCONFIGDEPEND:libc-musl = ""