diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:25:30 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:25:30 +0000 |
commit | 01d5da72d0bd5038ce4b6a211546a4ca3f8daffd (patch) | |
tree | ba1921d2beb66d9da21a5d6183c2c7db2bfc22a7 /meta/packages/gcc/gcc3-build-cross.inc | |
parent | 8c1871aabfd2b010152886cb5b48a0be84c2dc80 (diff) | |
download | openembedded-core-01d5da72d0bd5038ce4b6a211546a4ca3f8daffd.tar.gz openembedded-core-01d5da72d0bd5038ce4b6a211546a4ca3f8daffd.tar.bz2 openembedded-core-01d5da72d0bd5038ce4b6a211546a4ca3f8daffd.zip |
Rearrange staging to match target system layout. This is a major change and will require a full rebuild.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3123 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gcc/gcc3-build-cross.inc')
-rw-r--r-- | meta/packages/gcc/gcc3-build-cross.inc | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/meta/packages/gcc/gcc3-build-cross.inc b/meta/packages/gcc/gcc3-build-cross.inc index ec285f522b..2b9766975c 100644 --- a/meta/packages/gcc/gcc3-build-cross.inc +++ b/meta/packages/gcc/gcc3-build-cross.inc @@ -1,7 +1,9 @@ USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}' -EXTRA_OECONF_PATHS = "--with-local-prefix=${STAGING_DIR}/${TARGET_SYS} \ - --with-gxx-include-dir=${STAGING_DIR}/${TARGET_SYS}/include/c++" +EXTRA_OECONF_PATHS = "--with-local-prefix=${STAGING_DIR_TARGET}${layout_prefix} \ + --with-gxx-include-dir=${STAGING_DIR_TARGET}/${layout_includedir}/c++ \ + --with-sysroot=${STAGING_DIR_TARGET} \ + --with-build-sysroot=${STAGING_DIR_TARGET}" do_configure_prepend () { rm -f ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/libgcc_eh.a @@ -25,13 +27,6 @@ do_stage_append () { rm -f ${CROSS_DIR}/bin/*gcov rm -f ${CROSS_DIR}/bin/*gccbug - # Fix a few include links so cross builds are happier - if [ ! -e ${STAGING_INCDIR}/c++ ]; then - mkdir -p ${STAGING_INCDIR} - ln -sf ${CROSS_DIR}/${TARGET_SYS}/include/c++ \ - ${STAGING_INCDIR}/ - fi - # We use libiberty from binutils rm -f ${CROSS_DIR}/lib/libiberty.a |