| Submitter | Andreas Oberritter |
|---|---|
| Date | May 4, 2012, 10:17 p.m. |
| Message ID | <1336169877-29276-1-git-send-email-obi@opendreambox.org> |
| Download | mbox | patch |
| Permalink | /patch/27179/ |
| State | Accepted |
| Commit | 9de1de7c2c4e9f5accb4dd082fe819a711defbfb |
| Headers | show |
Comments
On 05/04/2012 03:17 PM, Andreas Oberritter wrote: > * 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> > --- > meta/recipes-devtools/gcc/gcc-4.6.inc | 5 +++-- > 1 file 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 74843ae..0f56670 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 \ Merged into OE-Core Thanks Sau!
Patch
diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc index 74843ae..0f56670 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 \
* 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> --- meta/recipes-devtools/gcc/gcc-4.6.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)