diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2005-12-14 22:16:52 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-14 22:16:52 +0000 |
commit | 488908717fa293c503fc00ff82523dd02fb14cd5 (patch) | |
tree | 47cb505051e30f1fdd3ec3539e52e8f604edae0c | |
parent | 92477a5e081f21967532d3e623e41af37bc5aa0d (diff) |
gcc-cross-initial: add 4.0.2
-rw-r--r-- | packages/gcc/gcc-cross-initial_4.0.2.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/gcc/gcc-cross-initial_4.0.2.bb b/packages/gcc/gcc-cross-initial_4.0.2.bb new file mode 100644 index 0000000000..68dafe3f1a --- /dev/null +++ b/packages/gcc/gcc-cross-initial_4.0.2.bb @@ -0,0 +1,29 @@ +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 \ + --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 +} |