diff options
author | Gerald Britton <gbritton@doomcom.org> | 2003-11-30 01:28:36 +0000 |
---|---|---|
committer | Gerald Britton <gbritton@doomcom.org> | 2003-11-30 01:28:36 +0000 |
commit | ffd74681cdcbb7ed936745cb77a031af7cded8d9 (patch) | |
tree | fed368d9e4e46d204e45cc5a0c80e229b060875b /gcc/gcc-uclibc-cross_3.3.2.oe | |
parent | 5cdb55ad8d8ca901d6efe7f758baa55dcbcf2f38 (diff) |
fixes for cross/prefix build changes
BKrev: 3fc947c4cEIiIu4YtDwmjlqrssD-eA
Diffstat (limited to 'gcc/gcc-uclibc-cross_3.3.2.oe')
-rw-r--r-- | gcc/gcc-uclibc-cross_3.3.2.oe | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/gcc/gcc-uclibc-cross_3.3.2.oe b/gcc/gcc-uclibc-cross_3.3.2.oe index e69de29bb2..8170dcc576 100644 --- a/gcc/gcc-uclibc-cross_3.3.2.oe +++ b/gcc/gcc-uclibc-cross_3.3.2.oe @@ -0,0 +1,55 @@ +inherit cross +include gcc-uclibc_${PV}.oe + +DEPENDS := virtual/${TARGET_PREFIX}binutils \ + virtual/uclibc virtual/uclibc-headers patcher +PROVIDES := virtual/${TARGET_PREFIX}gcc \ + virtual/${TARGET_PREFIX}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_PREFIX} + +export CPPFLAGS = +export CXXFLAGS = +export CFLAGS = +export LDFLAGS = + +do_configure () { + export CC="${BUILD_CC}" + export AR="${TARGET_SYS}-ar" + export RANLIB="${TARGET_SYS}-ranlib" + export LD="${TARGET_SYS}-ld" + export NM="${TARGET_SYS}-nm" + oe_runconf +} + +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 +} |