From: Robert Yang <[email protected]> Fixed: require conf/multilib.conf MULTILIBS = "multilib:lib32" DEFAULTTUNE:virtclass-multilib-lib32 = "x86" MACHINE = "qemux86-64"
$ bitbake lib32-grub-native The build would go on before the patch which was incorrect. Now: ERROR: Nothing PROVIDES 'lib32-grub-native'. Close matches: [snip] The nativesdk doesn't have such an issue, so only skip native. Signed-off-by: Robert Yang <[email protected]> --- meta/classes/multilib_global.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/multilib_global.bbclass b/meta/classes/multilib_global.bbclass index 973ac9130b..c95c3a586d 100644 --- a/meta/classes/multilib_global.bbclass +++ b/meta/classes/multilib_global.bbclass @@ -184,6 +184,9 @@ python multilib_virtclass_handler_global () { if variant: return + if bb.data.inherits_class('native', d): + return + non_ml_recipes = d.getVar('NON_MULTILIB_RECIPES').split() if bb.data.inherits_class('kernel', d) or \ -- 2.44.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#206784): https://lists.openembedded.org/g/openembedded-core/message/206784 Mute This Topic: https://lists.openembedded.org/mt/109425064/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
