From: Richard Purdie Date: Tue, 1 Jun 2010 16:25:05 +0000 (+0100) Subject: sanity.bbclass: Check for SDKMACHINE=i686 and error if found X-Git-Tag: yocto-4.0~45650 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7dcf1e47b729f590937cf8401c742c484e3dee85;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sanity.bbclass: Check for SDKMACHINE=i686 and error if found Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 381749ef010..3cf1c56aefc 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -121,6 +121,9 @@ def check_sanity(e): if not oes_bb_conf: messages = messages + 'You do not include OpenEmbeddeds version of conf/bitbake.conf. This means your environment is misconfigured, in particular check BBPATH.\n' + if data.getVar('SDKMACHINE', e.data, True) is 'i686': + messages = messages + '"Please set SDKMACHINE to i586 as its currently set to i686 and this is known to have issues (see local.conf).\n' + # # Check that TMPDIR hasn't changed location since the last time we were run #