diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-29 02:06:44 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-29 02:06:44 +0000 |
commit | 597eca0bde1fc33dbf4a02d1ef43aaaa3c4cc9a8 (patch) | |
tree | b8b9c34a6f1fd5b1288f8a048e7792cbb90816e9 /gcc | |
parent | 8320397539e4630c4adbc33b6c593d9feff7275a (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages
2004/01/28 20:06:18-06:00 ti.com!kergoth
Correct bindir and sbindir for usbutils.
2004/01/28 20:06:10-06:00 ti.com!kergoth
Correct binutils config opts for glibc tc build, and add libgcc_eh workaround.
BKrev: 40186ab4dmKQkVY2opxcGSF6mdN8Pw
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcc-cross_3.3.2.oe | 1 | ||||
-rw-r--r-- | gcc/gcc-initial-cross_3.3.2.oe | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/gcc-cross_3.3.2.oe b/gcc/gcc-cross_3.3.2.oe index 96014176d0..f5534168cf 100644 --- a/gcc/gcc-cross_3.3.2.oe +++ b/gcc/gcc-cross_3.3.2.oe @@ -27,6 +27,7 @@ do_configure () { export RANLIB="${TARGET_SYS}-ranlib" export LD="${TARGET_SYS}-ld" export NM="${TARGET_SYS}-nm" + rm -f ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/3.3.2/libgcc_eh.a oe_runconf } diff --git a/gcc/gcc-initial-cross_3.3.2.oe b/gcc/gcc-initial-cross_3.3.2.oe index d687401007..25f040d624 100644 --- a/gcc/gcc-initial-cross_3.3.2.oe +++ b/gcc/gcc-initial-cross_3.3.2.oe @@ -13,3 +13,8 @@ EXTRA_OECONF := --with-local-prefix=${CROSS_DIR}/local \ --disable-threads \ --enable-multilib \ --program-prefix=${TARGET_SYS}- + +do_stage_prepend () { + mkdir -p ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/3.3.2 + ln -sf libgcc.a ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/3.3.2/libgcc_eh.a +} |