diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-14 21:10:46 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-14 21:10:46 +0000 |
commit | a7b8b908934222345f5c78f5172dff117e1c2489 (patch) | |
tree | 6e11fcb274e555c4b68320d66d65fbfac45678f4 /gcc/gcc-uclibc-cross_3.3.1.oe | |
parent | 1d53017dcc04b1619c228059c1cc8094721f4edd (diff) |
More fixes per seperator change.
BKrev: 3f8c6656MFPMVnm7SgylaeVMS381Eg
Diffstat (limited to 'gcc/gcc-uclibc-cross_3.3.1.oe')
-rw-r--r-- | gcc/gcc-uclibc-cross_3.3.1.oe | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/gcc/gcc-uclibc-cross_3.3.1.oe b/gcc/gcc-uclibc-cross_3.3.1.oe index e69de29bb2..703c1b994d 100644 --- a/gcc/gcc-uclibc-cross_3.3.1.oe +++ b/gcc/gcc-uclibc-cross_3.3.1.oe @@ -0,0 +1,54 @@ +inherit cross +include gcc-uclibc_${PV}.oe + +DEPENDS := virtual/${TARGET_SYS}-binutils \ + virtual/uclibc virtual/uclibc-headers patcher +PROVIDES := virtual/${TARGET_SYS}-gcc \ + virtual/${TARGET_SYS}-g++ + +PACKAGES = + +EXTRA_OECONF := --with-local-prefix=${CROSS_DIR}/usr/local \ + --with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++ \ + --enable-target-optspace \ + --disable-nls \ + --with-gnu-ld \ + --disable-__cxa_atexit \ + --enable-languages=c,c++ \ + --enable-shared \ + --enable-multilib \ + --program-prefix=${TARGET_SYS}- + +export CPPFLAGS = +export CXXFLAGS = +export CFLAGS = +export LDFLAGS = + +do_configure_prepend () { + export CC="${BUILD_CC}" + export AR="${TARGET_SYS}-ar" + export RANLIB="${TARGET_SYS}-ranlib" + export LD="${TARGET_SYS}-ld" + export NM="${TARGET_SYS}-nm" +} + +do_compile_prepend () { + export CC="${BUILD_CC}" + export AR_FOR_TARGET="${TARGET_SYS}-ar" + export RANLIB_FOR_TARGET="${TARGET_SYS}-ranlib" + export LD_FOR_TARGET="${TARGET_SYS}-ld" + export NM_FOR_TARGET="${TARGET_SYS}-nm" + export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc" +} + +do_stage_append () { +# # Cleanup after gcc's --program-prefix failing.. +# ( cd ${CROSS_DIR}/bin ; for p in ${TARGET_SYS}-* ; do +# mv $p `echo $p | sed -e s,${TARGET_SYS},${TARGET_ARCH}-uclibc,` +# done ) + + rm -f ${CROSS_DIR}/bin/gccbug ${CROSS_DIR}/bin/gcov + for d in info man share/doc share/locale ; do + rm -rf ${CROSS_DIR}/$d + done +} |