diff options
author | Koen Kooi <koen@openembedded.org> | 2007-08-12 10:02:59 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-08-12 10:02:59 +0000 |
commit | 68ce2211b09ef61659cf2ee7665d545e087335a3 (patch) | |
tree | b839db221301aeb054838e1b8454033483ad5a2e /packages/gcc/gcc-cross-initial_4.2.1.bb | |
parent | 165127d089c214a46f229090cc121909b2a0aa83 (diff) |
gcc: add initial cross 4.2.1
Diffstat (limited to 'packages/gcc/gcc-cross-initial_4.2.1.bb')
-rw-r--r-- | packages/gcc/gcc-cross-initial_4.2.1.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/gcc/gcc-cross-initial_4.2.1.bb b/packages/gcc/gcc-cross-initial_4.2.1.bb new file mode 100644 index 0000000000..1e23ef9330 --- /dev/null +++ b/packages/gcc/gcc-cross-initial_4.2.1.bb @@ -0,0 +1,30 @@ +require gcc-cross_${PV}.bb + +DEPENDS = "virtual/${TARGET_PREFIX}binutils" +DEPENDS += "${@['virtual/${TARGET_PREFIX}libc-initial',''][bb.data.getVar('TARGET_ARCH', d, 1) in ['arm', 'armeb', 'mips', 'mipsel']]}" +PROVIDES = "virtual/${TARGET_PREFIX}gcc-initial" +PACKAGES = "" + +# This is intended to be a -very- basic config +EXTRA_OECONF = "--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ + --with-newlib \ + --disable-shared \ + --disable-threads \ + --disable-multilib \ + --disable-__cxa_atexit \ + --disable-libmudflap \ + --disable-libssp \ + --enable-languages=c \ + --enable-target-optspace \ + --program-prefix=${TARGET_PREFIX} \ + ${@get_gcc_fpu_setting(bb, d)}" + +do_stage_prepend () { + mkdir -p ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV} + ln -sf libgcc.a ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${BINV}/libgcc_eh.a +} + +# Override the method from gcc-cross so we don't try to install libgcc +do_install () { + oe_runmake 'DESTDIR=${D}' install +} |