diff options
author | Richard Purdie <richard@openedhand.com> | 2007-09-18 10:22:25 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-09-18 10:22:25 +0000 |
commit | 79bbd249406dbe366a9301354d3643a850ac4c13 (patch) | |
tree | 2f4f76fa4a6c54d8be89dd17e33ee2eaa8b047b0 /meta/packages/gcc/gcc-cross-initial.inc | |
parent | 1401afe0e337a41c15bfbfd77e38393bbe49746d (diff) | |
download | poky-79bbd249406dbe366a9301354d3643a850ac4c13.tar.gz |
gcc-cross-initial: Move common code to gcc-cross-initial.inc
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2757 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gcc/gcc-cross-initial.inc')
-rw-r--r-- | meta/packages/gcc/gcc-cross-initial.inc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-cross-initial.inc b/meta/packages/gcc/gcc-cross-initial.inc new file mode 100644 index 0000000000..49e1937b06 --- /dev/null +++ b/meta/packages/gcc/gcc-cross-initial.inc | |||
@@ -0,0 +1,25 @@ | |||
1 | DEPENDS = "virtual/${TARGET_PREFIX}binutils" | ||
2 | DEPENDS += "${@['virtual/${TARGET_PREFIX}libc-initial',''][bb.data.getVar('TARGET_ARCH', d, 1) in ['arm', 'armeb', 'mips', 'mipsel']]}" | ||
3 | PROVIDES = "virtual/${TARGET_PREFIX}gcc-initial" | ||
4 | PACKAGES = "" | ||
5 | |||
6 | # This is intended to be a -very- basic config | ||
7 | EXTRA_OECONF = "--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ | ||
8 | --with-newlib \ | ||
9 | --disable-shared \ | ||
10 | --disable-threads \ | ||
11 | --disable-multilib \ | ||
12 | --disable-__cxa_atexit \ | ||
13 | --enable-languages=c \ | ||
14 | --enable-target-optspace \ | ||
15 | --program-prefix=${TARGET_PREFIX} \ | ||
16 | ${@get_gcc_fpu_setting(bb, d)}" | ||
17 | |||
18 | do_stage_prepend () { | ||
19 | mkdir -p ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV} | ||
20 | ln -sf libgcc.a ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/libgcc_eh.a | ||
21 | } | ||
22 | |||
23 | do_install () { | ||
24 | : | ||
25 | } | ||