diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-03-22 16:08:03 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-26 14:48:50 +0100 |
commit | 523df15bcc21e1749771cca757613f3520243b8e (patch) | |
tree | 781d4e38a1b67e982fee7d75cf268c70d516a277 | |
parent | b98fb95c594117d165a31795b6fa7b6cb583d598 (diff) | |
download | openembedded-core-523df15bcc21e1749771cca757613f3520243b8e.tar.gz openembedded-core-523df15bcc21e1749771cca757613f3520243b8e.tar.bz2 openembedded-core-523df15bcc21e1749771cca757613f3520243b8e.zip |
gcc-4.7: Disable cloog and ppl
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: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7.inc b/meta/recipes-devtools/gcc/gcc-4.7.inc index 5b58d8cfc9..3956084062 100644 --- a/meta/recipes-devtools/gcc/gcc-4.7.inc +++ b/meta/recipes-devtools/gcc/gcc-4.7.inc @@ -79,6 +79,8 @@ EXTRA_OECONF_BASE = " --enable-lto \ --disable-libmudflap \ --with-system-zlib \ --with-linker-hash-style=${LINKER_HASH_STYLE} \ + --with-ppl=no \ + --with-cloog=no \ --enable-cheaders=c_global " EXTRA_OECONF_INITIAL = "--disable-libmudflap \ |