diff options
Diffstat (limited to 'meta/packages/gcc/gcc4-build-sdk.inc')
-rw-r--r-- | meta/packages/gcc/gcc4-build-sdk.inc | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/meta/packages/gcc/gcc4-build-sdk.inc b/meta/packages/gcc/gcc4-build-sdk.inc index b75e8a57c9..77d326b3ee 100644 --- a/meta/packages/gcc/gcc4-build-sdk.inc +++ b/meta/packages/gcc/gcc4-build-sdk.inc | |||
@@ -1,19 +1,17 @@ | |||
1 | USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}' | 1 | USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}' |
2 | USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibcgnueabi", "no", "", d )}' | 2 | USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibcgnueabi", "no", "", d )}' |
3 | 3 | ||
4 | 4 | SYSROOT = "${WORKDIR}/sysroot" | |
5 | STAGING_TARGET_INCDIR = "${STAGING_DIR}/${TARGET_SYS}/include" | 5 | EXTRA_OECONF += "--with-sysroot=${SYSROOT}" |
6 | STAGING_TARGET_LIBDIR = "${STAGING_DIR}/${TARGET_SYS}/lib" | ||
7 | 6 | ||
8 | do_configure () { | 7 | do_configure () { |
8 | # Work around Hardcoded path assumptions in gcc | ||
9 | mkdir -p ${SYSROOT}/usr/ | ||
10 | ln -s ${STAGING_DIR}/${TARGET_SYS}/include ${SYSROOT}/usr/include | ||
11 | ln -s ${STAGING_DIR}/${TARGET_SYS}/lib ${SYSROOT}/usr/lib | ||
9 | (cd ${S} && gnu-configize) || die "failure running gnu-configize" | 12 | (cd ${S} && gnu-configize) || die "failure running gnu-configize" |
10 | (cd ${S}/libstdc++-v3 && autoreconf) | 13 | (cd ${S}/libstdc++-v3 && autoreconf) |
11 | oe_runconf | 14 | oe_runconf |
12 | mkdir -p gcc | ||
13 | ln -sf ${CROSS_DIR}/bin/${TARGET_PREFIX}as gcc/as | ||
14 | ln -sf ${CROSS_DIR}/bin/${TARGET_PREFIX}ld gcc/ld | ||
15 | ln -sf ${STAGING_TARGET_INCDIR}/* ${S}/include | ||
16 | ln -sf ${STAGING_TARGET_LIBDIR}/crt*.o gcc/ | ||
17 | } | 15 | } |
18 | 16 | ||
19 | do_compile () { | 17 | do_compile () { |
@@ -23,5 +21,5 @@ do_compile () { | |||
23 | export LD_FOR_TARGET="${TARGET_SYS}-ld" | 21 | export LD_FOR_TARGET="${TARGET_SYS}-ld" |
24 | export NM_FOR_TARGET="${TARGET_SYS}-nm" | 22 | export NM_FOR_TARGET="${TARGET_SYS}-nm" |
25 | export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc ${TARGET_CC_ARCH}" | 23 | export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc ${TARGET_CC_ARCH}" |
26 | oe_runmake CFLAGS_FOR_TARGET="-I${STAGING_TARGET_INCDIR}" | 24 | oe_runmake |
27 | } | 25 | } |