diff options
Diffstat (limited to 'meta/packages/gcc/gcc-cross_csl-arm-2007q3.bb')
-rw-r--r-- | meta/packages/gcc/gcc-cross_csl-arm-2007q3.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-cross_csl-arm-2007q3.bb b/meta/packages/gcc/gcc-cross_csl-arm-2007q3.bb new file mode 100644 index 0000000000..4fde67b006 --- /dev/null +++ b/meta/packages/gcc/gcc-cross_csl-arm-2007q3.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | PR = "r0" | ||
2 | |||
3 | require gcc-csl-arm-2007q3.inc | ||
4 | require gcc-cross4.inc | ||
5 | require gcc-configure-cross.inc | ||
6 | require gcc-package-cross.inc | ||
7 | |||
8 | SRC_URI_append_fail-fast = " file://zecke-no-host-includes.patch;patch=1 " | ||
9 | |||
10 | EXTRA_OECONF += "--disable-multilib --disable-libunwind-exceptions --with-mpfr=${STAGING_DIR_NATIVE}${layout_exec_prefix}" | ||
11 | |||
12 | #We don't want i686 linux ending up in the CFLAGS_FOR_TARGET like this: -isystem/OE/angstrom-tmp/staging/i686-linux/usr/include | ||
13 | CFLAGS = "" | ||
14 | CXXFLAGS = "" | ||
15 | LDFLAGS = "" | ||
16 | |||
17 | # staging-linkage and cross-linkage recipes don't work anymore, so do it by hand for this backwards CSL toolchain | ||
18 | do_compile_prepend() { | ||
19 | ln -sf ${STAGING_DIR_TARGET}${layout_libdir}/crt*.o ${CROSS_DIR}/${TARGET_SYS}/lib/ | ||
20 | ln -sf ${STAGING_DIR_TARGET}${layout_libdir}/ld-* ${CROSS_DIR}/${TARGET_SYS}/lib/ | ||
21 | ln -sf ${STAGING_DIR_TARGET}/lib/libc* ${CROSS_DIR}/${TARGET_SYS}/lib/ | ||
22 | sed -i -e 's:gcc_no_link=yes:gcc_no_link=no:' ${S}/libstdc++-v3/configure | ||
23 | |||
24 | } | ||
25 | |||
26 | ARCH_FLAGS_FOR_TARGET += " -L${STAGING_DIR_TARGET}${layout_libdir} -isystem${STAGING_DIR_TARGET}${layout_includedir}" | ||