diff options
author | Koen Kooi <koen@openembedded.org> | 2010-06-22 11:55:57 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-06-22 11:56:54 +0200 |
commit | d2d2a6cb05fd2790f8c7b8f6cfc9ba85fbc29319 (patch) | |
tree | a5e79515ed8ef5760f7695dbc9eee55986645a60 | |
parent | 255eb9e2b29fb4c027a48c804b336c701f78ea75 (diff) |
gcc-cross-sdk 4.5: sync configure options with cross version.
Still fails with:
| arm-angstrom-linux-gnueabi-strip:/OE/angstrom-setup-scripts/build/tmp-angstrom_2008_1/work/x86_64-armv7a-sdk-angstrom-linux-gnueabi/gcc-cross-sdk-4.5-r4+svnr160764/image/usr/local/angstrom/arm/arm-angstrom-linux-gnueabi/lib/libstdc++.so.6.0.14-gdb.py: File format not recognized
| ERROR: Function do_install failed
-rw-r--r-- | recipes/gcc/gcc-cross-sdk_4.5.bb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/recipes/gcc/gcc-cross-sdk_4.5.bb b/recipes/gcc/gcc-cross-sdk_4.5.bb index a3b2215e2b..e8ef4e2616 100644 --- a/recipes/gcc/gcc-cross-sdk_4.5.bb +++ b/recipes/gcc/gcc-cross-sdk_4.5.bb @@ -1,11 +1,9 @@ -PR = "r3" +PR = "r4" inherit sdk require gcc-${PV}.inc require gcc-cross-sdk.inc -EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \ - --disable-libgomp --disable-libmudflap \ - --with-mpfr=${STAGING_DIR_NATIVE}${prefix_native} \ - --with-system-zlib" +EXTRA_OECONF += " --disable-libunwind-exceptions --with-mpfr=${STAGING_DIR_NATIVE}${prefix_native} --with-system-zlib" + |