summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
diff options
context:
space:
mode:
authorDexuan Cui <dexuan.cui@intel.com>2011-01-18 12:50:39 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-25 12:25:45 +0000
commit23cb814b2761cbe42f1f76e66abb61d8d4584c54 (patch)
tree5bd6f5594afd4e0d53ad84547c7c266e810f6d87 /meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
parent34729e4f828f2c9efc415838098d4e5dedd456ee (diff)
downloadpoky-23cb814b2761cbe42f1f76e66abb61d8d4584c54.tar.gz
gcc-cross-intermediate, gcc-crosssdk-intermediate: change CROSS_TARGET_SYS_DIR and install into new locations
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross-intermediate.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-cross-intermediate.inc16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
index 48c6d9aabe..12fdb70ae8 100644
--- a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
@@ -3,6 +3,8 @@ DEPENDS += "virtual/${TARGET_PREFIX}libc-initial gettext-native"
3PROVIDES = "virtual/${TARGET_PREFIX}gcc-intermediate" 3PROVIDES = "virtual/${TARGET_PREFIX}gcc-intermediate"
4PACKAGES = "" 4PACKAGES = ""
5 5
6CROSS_TARGET_SYS_DIR_append = ".${PN}"
7
6# This is intended to be a -very- basic config 8# This is intended to be a -very- basic config
7# sysroot is needed in case we use libc-initial 9# sysroot is needed in case we use libc-initial
8EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \ 10EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
@@ -28,4 +30,18 @@ do_install () {
28 oe_runmake 'DESTDIR=${D}' install 30 oe_runmake 'DESTDIR=${D}' install
29 install -d ${D}${target_base_libdir}/ 31 install -d ${D}${target_base_libdir}/
30 mv ${D}${exec_prefix}/${TARGET_SYS}/lib/* ${D}${target_base_libdir}/ 32 mv ${D}${exec_prefix}/${TARGET_SYS}/lib/* ${D}${target_base_libdir}/
33
34 # We don't really need this (here shares/ contains man/, info/, locale/).
35 rm -rf ${D}${datadir}/
36
37 # We use libiberty from binutils
38 rm -f ${D}${exec_prefix}/lib/lib/libiberty.a
39
40 # Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are
41 # found. These need to be relative paths so they work in different locations.
42 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
43 install -d $dest
44 for t in ar as ld nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do
45 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t $dest$t
46 done
31} 47}