aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qemu
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2006-11-15 07:55:21 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-11-15 07:55:21 +0000
commit8f856c20162d1136fc66a4d2ab5e50c5d042f7a3 (patch)
treefd183e6f6d7a48e28e6d3f1b8a449fd06c89523c /packages/qemu
parentced7e57e891f7d9f488ecf25ed57fa7d906b290c (diff)
downloadopenembedded-8f856c20162d1136fc66a4d2ab5e50c5d042f7a3.tar.gz
qemu-native: added gcc34 and gcc33 as available CC - close #1584
Diffstat (limited to 'packages/qemu')
-rw-r--r--packages/qemu/qemu-native.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/qemu/qemu-native.inc b/packages/qemu/qemu-native.inc
index 758c81a1a4..d0d6604ec5 100644
--- a/packages/qemu/qemu-native.inc
+++ b/packages/qemu/qemu-native.inc
@@ -14,6 +14,10 @@ python __anonymous() {
if not oldOeConf: oldOeConf = ""
if len(which(path, 'gcc-3.4')) != 0:
data.setVar('EXTRA_OECONF', oldOeConf + " --cc=gcc-3.4", d)
+ elif len(which(path, 'gcc34')) != 0:
+ data.setVar('EXTRA_OECONF', oldOeConf + " --cc=gcc34", d)
+ elif len(which(path, 'gcc33')) != 0:
+ data.setVar('EXTRA_OECONF', oldOeConf + " --cc=gcc33", d)
elif len(which(path, 'gcc-3.3')) != 0:
data.setVar('EXTRA_OECONF', oldOeConf + " --cc=gcc-3.3", d)
elif len(which(path, 'gcc-3.3.6')) != 0: