From 16168016bd1601bf0a6c2bb633b9af16ef9a98ff Mon Sep 17 00:00:00 2001 From: Dan McGregor Date: Wed, 21 Apr 2021 14:50:15 -0600 Subject: clang: use global multilib variants Using regular multilib variants prevents sharing state between machines with dissimilar multilibs, or non-multilib machines. Since there's no harm in having extra multilib triples, use the full set for all builds. Signed-off-by: Dan McGregor (cherry picked from commit 1f40e6439ac7894bf788aa221efc8648d043a0f9) --- recipes-devtools/clang/llvm-project-source.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-devtools/clang/llvm-project-source.inc b/recipes-devtools/clang/llvm-project-source.inc index d7b91e0..de7ba8a 100644 --- a/recipes-devtools/clang/llvm-project-source.inc +++ b/recipes-devtools/clang/llvm-project-source.inc @@ -28,7 +28,7 @@ python add_distro_vendor() { case = "" triple = "" vendors = d.getVar('CLANG_EXTRA_OE_VENDORS') - multilib_variants = d.getVar('MULTILIB_VARIANTS').split() + multilib_variants = (d.getVar("MULTILIB_GLOBAL_VARIANTS") or "").split() vendors_to_add = [] for vendor in vendors.split(): # convert -yoe into yoe -- cgit v1.2.3-54-g00ecf