diff options
author | Chris Larson <clarson@kergoth.com> | 2004-07-27 21:13:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-07-27 21:13:57 +0000 |
commit | 8713e9a802096aa8a5efaab77b2a0467122fb06c (patch) | |
tree | 470db7075a991f6cc69eef3d568b0e7a2e248294 /gcc/gcc-cross-initial_3.4.1.oe | |
parent | 084f0d52833de1113023839ffdafb410292be57a (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages
2004/07/27 16:13:43-05:00 handhelds.org!kergoth
Make the gcc-cross-initial packages, which blow away EXTRA_OECONf, call out get_fpu_setting().
2004/07/27 00:16:32-05:00 handhelds.org!kergoth
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages
2004/07/27 00:15:39-05:00 handhelds.org!kergoth
Add initial mipsel autoconf test results (still missing a ton).
BKrev: 4106c595XTEwa1A4X5d5H3MLLQtuLg
Diffstat (limited to 'gcc/gcc-cross-initial_3.4.1.oe')
-rw-r--r-- | gcc/gcc-cross-initial_3.4.1.oe | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gcc/gcc-cross-initial_3.4.1.oe b/gcc/gcc-cross-initial_3.4.1.oe index e69de29bb2..8098b7f5be 100644 --- a/gcc/gcc-cross-initial_3.4.1.oe +++ b/gcc/gcc-cross-initial_3.4.1.oe @@ -0,0 +1,30 @@ +include gcc-cross_${PV}.oe + +DEPENDS = "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}libc-initial" +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-nls \ + --disable-shared \ + --disable-threads \ + --disable-multilib \ + --disable-__cxa_atexit \ + --enable-languages=c \ + --enable-target-optspace \ + --program-prefix=${TARGET_PREFIX} \ + ${@get_fpu_setting(oe, d)}" + +do_stage_prepend () { + mkdir -p ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${PV} + ln -sf libgcc.a ${CROSS_DIR}/lib/gcc/${TARGET_SYS}/${PV}/libgcc_eh.a +} + +# Override the method from gcc-cross so we don't try to install libgcc +do_install () { + oe_runmake 'DESTDIR=${D}' install +} + |