diff options
author | Chris Larson <clarson@kergoth.com> | 2004-02-20 23:35:21 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-02-20 23:35:21 +0000 |
commit | a69d50f45b7fc386147d619e76b6953687f34316 (patch) | |
tree | cbfd5ddb57bb6240a319178fa4c93ddda19b393f /gcc/gcc-initial-cross_3.3.2.oe | |
parent | 0ae3bf166eed9448145c83643729d13a36d80419 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages
2004/02/20 17:34:57-06:00 ti.com!kergoth
Glibc toolchain build updates:
Gcc 3.3.3.
Kernel-headers 2.4.25 instead of 2.4.21.
Install them into include rather than sys-include.
Tweaking some configure options all around based on comments in crosstool.
BKrev: 403699b93isV6v6AhTg1skp2YYom8Q
Diffstat (limited to 'gcc/gcc-initial-cross_3.3.2.oe')
-rw-r--r-- | gcc/gcc-initial-cross_3.3.2.oe | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/gcc/gcc-initial-cross_3.3.2.oe b/gcc/gcc-initial-cross_3.3.2.oe index 1d1d7fff51..ad5dd8def6 100644 --- a/gcc/gcc-initial-cross_3.3.2.oe +++ b/gcc/gcc-initial-cross_3.3.2.oe @@ -3,18 +3,19 @@ include gcc-cross_${PV}.oe DEPENDS := virtual/${TARGET_PREFIX}binutils glibc-initial patcher-native PROVIDES := virtual/${TARGET_PREFIX}gcc-initial -EXTRA_OECONF := --with-local-prefix=${CROSS_DIR}/local \ - --with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++ \ - --enable-target-optspace \ - --disable-nls \ - --with-gnu-ld \ - --enable-languages=c \ - --disable-shared \ - --disable-threads \ - --enable-multilib \ - --program-prefix=${TARGET_SYS}- +EXTRA_OECONF = '--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ + --disable-multilib \ + --with-newlib \ + --without-headers \ + --disable-nls \ + --enable-threads=no \ + --enable-symvers=gnu \ + --enable-__cxa_atexit \ + --enable-languages=c \ + --disable-shared \ + --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 + mkdir -p ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/${PV} + ln -sf libgcc.a ${CROSS_DIR}/lib/gcc-lib/${TARGET_SYS}/${PV}/libgcc_eh.a } |