aboutsummaryrefslogtreecommitdiffstats
path: root/classes/sanity.bbclass
diff options
context:
space:
mode:
authorRoman I Khimov <khimov@altell.ru>2010-03-08 18:27:13 +0300
committerRoman I Khimov <khimov@altell.ru>2010-03-09 20:28:31 +0300
commit677630b31b8ce4bd8cb723a4c66414739c9d4331 (patch)
treee50f12e28ba19ee8e784f4aede7e58b67df5e59d /classes/sanity.bbclass
parent44ecf674747fef9f71f928660b394ca470a135fc (diff)
downloadopenembedded-677630b31b8ce4bd8cb723a4c66414739c9d4331.tar.gz
qemu: remove 0.9.x
QEMU 0.9.x is obsolete this days and with all modifications made for QEMU 0.10.x in OE, versions 0.9.x are unusable anyway. 0.10.3 was introduced 10 month ago, so a good transition time was also given. Now it's time to just kill it. Also remove cvs and svn versions since those are 0.9.x leftovers and QEMU moved to git long ago. Also remove gcc3 checks since that are not relevant for QEMU 0.10+. Also remove from icecc blacklist, since QEMU builds fine with it and the reason for blacklisting was GCC 3. Signed-off-by: Roman I Khimov <khimov@altell.ru> Acked-by: Tom Rini <tom_rini@mentor.com> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Diffstat (limited to 'classes/sanity.bbclass')
-rw-r--r--classes/sanity.bbclass9
1 files changed, 0 insertions, 9 deletions
diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass
index 19310cbd9c..e8b6587500 100644
--- a/classes/sanity.bbclass
+++ b/classes/sanity.bbclass
@@ -87,15 +87,6 @@ def check_sanity(e):
# If we'll be running qemu, perform some sanity checks
if data.getVar('ENABLE_BINARY_LOCALE_GENERATION', e.data, True):
- # Some versions of qemu-native needs gcc 3.x. Do a special
- # check here to allow for host 'gcc' is 3.x.
- if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided:
- gcc_version = commands.getoutput("${BUILD_PREFIX}gcc --version | head -n 1 | cut -f 3 -d ' '")
-
- if not check_gcc3(e.data) and gcc_version[0] != '3':
- messages = messages + "gcc3-native was in ASSUME_PROVIDED but the gcc-3.x binary can't be found in PATH"
- missing = missing + "gcc-3.x (needed for qemu-native),"
-
if "qemu-native" in assume_provided:
required_utilities += " %s" % (qemu_target_binary(e.data))