diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-05-05 00:17:57 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-06 09:54:45 +0100 |
commit | 9de1de7c2c4e9f5accb4dd082fe819a711defbfb (patch) | |
tree | 6537fc93f1700bfd465a35d76727e7785d8369ba /meta/recipes-devtools | |
parent | 945b817d381bdb68202982536daaaaff78ad5761 (diff) | |
download | openembedded-core-9de1de7c2c4e9f5accb4dd082fe819a711defbfb.tar.gz openembedded-core-9de1de7c2c4e9f5accb4dd082fe819a711defbfb.tar.bz2 openembedded-core-9de1de7c2c4e9f5accb4dd082fe819a711defbfb.zip |
gcc-4.6: disable cloog, change syntax to disable ppl
* Backported from 523df15bcc21e1749771cca757613f3520243b8e
as suggested by Khem.
* Original commit message:
If build system has those libraries installed
gcc configure will pick them up. We want
consistent builds so we disable them since we
do not (yet) support them
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.6.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc index e867f2c670..65bc65d496 100644 --- a/meta/recipes-devtools/gcc/gcc-4.6.inc +++ b/meta/recipes-devtools/gcc/gcc-4.6.inc @@ -1,6 +1,6 @@ require gcc-common.inc -PR = "r26" +PR = "r27" # Third digit in PV should be incremented after a minor release # happens from this branch on gcc e.g. currently its 4.6.0 @@ -93,7 +93,8 @@ EXTRA_OECONF_BASE = " --enable-lto \ --disable-libmudflap \ --with-system-zlib \ --with-linker-hash-style=${LINKER_HASH_STYLE} \ - --without-ppl \ + --with-ppl=no \ + --with-cloog=no \ --enable-cheaders=c_global " EXTRA_OECONF_INITIAL = "--disable-libmudflap \ |