diff options
author | Gerald Britton <gbritton@doomcom.org> | 2004-05-11 04:43:25 +0000 |
---|---|---|
committer | Gerald Britton <gbritton@doomcom.org> | 2004-05-11 04:43:25 +0000 |
commit | 38b7c7c2fd568f5d23c789270f7dcb1ce9124025 (patch) | |
tree | 67cfdbeeca5d18972a094d7e1cdfc727d147f2e2 /gcc/gcc-cross-initial_3.4.0.oe | |
parent | a5fa8bb1103f69624f986678f98c2694caddc815 (diff) |
uclibc vs. glibc cleanup (eliminate distinct uclibc packages)
BKrev: 40a059edeEwCh8PT1OwxWpRHOZD-gA
Diffstat (limited to 'gcc/gcc-cross-initial_3.4.0.oe')
-rw-r--r-- | gcc/gcc-cross-initial_3.4.0.oe | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/gcc-cross-initial_3.4.0.oe b/gcc/gcc-cross-initial_3.4.0.oe index e69de29bb2..b800e1927e 100644 --- a/gcc/gcc-cross-initial_3.4.0.oe +++ b/gcc/gcc-cross-initial_3.4.0.oe @@ -0,0 +1,28 @@ +include gcc-cross_${PV}.oe + +DEPENDS = "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}libc-initial" +PROVIDES = "virtual/${TARGET_PREFIX}gcc-initial" + +PACKAGES = "" + +EXTRA_OECONF = "--with-local-prefix=${CROSS_DIR}/${TARGET_SYS} \ + --with-newlib \ + --disable-nls \ + --disable-shared \ + --disable-threads \ + --disable-multilib \ + --enable-__cxa_atexit \ + --enable-languages=c \ + --enable-target-optspace \ + --program-prefix=${TARGET_PREFIX}" + +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 +} + |