From 1c9f061d1f855cd0ecdcd3449e1f9bf45a7de0ee Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Fri, 6 Aug 2010 11:40:55 -0700 Subject: pseudo: Upgrade pseudo and correct problems Fix an issue where pseudo could try to compile incorrectly on an x86_64 host system. Now it verifies that it should be trying to build a 32-bit library, and if so the necessary prereqs are available. Also uprev to the latest version of pseudo changes to enable wrapping of execl, local variable storage and misc fixes. Signed-off-by: Mark Hatle --- meta/classes/sanity.bbclass | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meta/classes/sanity.bbclass') diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 31b8dd2b0..a595224a7 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -143,6 +143,11 @@ def check_sanity(e): if data.getVar('SDK_ARCH', e.data, True) == 'i686': messages = messages + '"Please set SDKMACHINE to i586. It is currently defaulting to the build machine architecture of i686 and this is known to have issues (see local.conf).\n' + nolibs = data.getVar('NO32LIBS', e.data, True) + if not nolibs: + if os.path.exists('/lib/libc.so.6') and not os.path.exists('/usr/include/gnu/stubs-32.h'): + messages = messages + "You have a 32-bit libc, but no 32-bit headers. You must install the 32-bit libc headers.\n" + # # Check that TMPDIR hasn't changed location since the last time we were run # -- cgit v1.2.3