diff options
author | Joseph Cole <jnc@unknown.openembedded.org> | 2006-03-14 07:16:35 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-14 07:16:35 +0000 |
commit | f09191891573d5a4992cf9238463805fc1090ee5 (patch) | |
tree | 987648c5c339f245bcfbaf80e2b1877765695d24 /packages/gcc/gcc-cross-initial_4.1.0.bb | |
parent | 7f82236e556466d048c3871945a7e586911c47b5 (diff) |
Pushing gcc 4.1.0 after a short review.
Not sure if it builds, leaving preference at "-1". See OE bug #378.
Thanks to Bernhard Rosenkraenzer for the submission. See OE bug #773.
Diffstat (limited to 'packages/gcc/gcc-cross-initial_4.1.0.bb')
-rw-r--r-- | packages/gcc/gcc-cross-initial_4.1.0.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/gcc/gcc-cross-initial_4.1.0.bb b/packages/gcc/gcc-cross-initial_4.1.0.bb new file mode 100644 index 0000000000..63308c2cfe --- /dev/null +++ b/packages/gcc/gcc-cross-initial_4.1.0.bb @@ -0,0 +1,30 @@ +include 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 +} |