summaryrefslogtreecommitdiff
path: root/meta/classes/base.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2011-07-14 16:24:51 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-19 17:33:57 +0100
commitec5c68e9368111bd51c1cfd6a9a135c53b82ceca (patch)
treec5c50ac5a7df49c986ccd03c6a89eb0acbaf6b6a /meta/classes/base.bbclass
parent7fecde55acf730f07009d8b040e92f931d5ebd88 (diff)
downloadopenembedded-core-ec5c68e9368111bd51c1cfd6a9a135c53b82ceca.tar.gz
openembedded-core-ec5c68e9368111bd51c1cfd6a9a135c53b82ceca.tar.bz2
openembedded-core-ec5c68e9368111bd51c1cfd6a9a135c53b82ceca.tar.xz
openembedded-core-ec5c68e9368111bd51c1cfd6a9a135c53b82ceca.zip
sanity, base: remove gcc3 check since qemu doesn't need it any more
Recent versions of qemu seem to be happy enough building with gcc 4.x, and indeed most modern distributions aren't shipping gcc3 any more, so there is no point checking for its presence as part of sanity. Also remove the check_gcc3 function from base since nothing else uses it. Signed-off-by: Phil Blundell <philb@gnu.org>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r--meta/classes/base.bbclass10
1 files changed, 0 insertions, 10 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 0c2c54692..3ca4e4776 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -397,16 +397,6 @@ python () {
bb.warn("Recipe %s is marked as only being architecture specific but seems to have machine specific packages?! The recipe may as well mark itself as machine specific directly." % d.getVar("PN", True))
}
-def check_gcc3(data):
-
- gcc3_versions = 'gcc-3.4.6 gcc-3.4.7 gcc-3.4 gcc34 gcc-3.4.4 gcc-3.3 gcc33 gcc-3.3.6 gcc-3.2 gcc32'
-
- for gcc3 in gcc3_versions.split():
- if check_app_exists(gcc3, data):
- return gcc3
-
- return False
-
addtask cleansstate after do_clean
python do_cleansstate() {
sstate_clean_cachefiles(d)