toolchain:

- build without seperate installation of libc-headers. Needed for upcoming eglibc support, because wee dont need extra installation of libc-headers for this.
- remove disable of build with tls support in gcc-core, needed for upccoming eglibc support
This commit is contained in:
Stephan Raue 2009-11-25 03:41:56 +01:00
parent 7c5c59f59c
commit 2c56ceece7
3 changed files with 6 additions and 12 deletions

View File

@ -1,8 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/unpack uClibc
$SCRIPTS/install linux-headers
make -C $BUILD/uClibc* PREFIX="$SYSROOT_PREFIX" install_headers

View File

@ -4,11 +4,13 @@
$SCRIPTS/install ccache
$SCRIPTS/install binutils
$SCRIPTS/build $TARGET_LIBC-headers
$SCRIPTS/install linux-headers
$SCRIPTS/install gmp
$SCRIPTS/install mpfr
$SCRIPTS/unpack gcc
touch $SYSROOT_PREFIX/usr/include/limits.h
setup_toolchain host
cd $BUILD/gcc*
@ -28,10 +30,10 @@ cd objdir-$1
--disable-libgomp \
--disable-shared \
--disable-multilib \
--disable-tls \
--disable-threads \
--without-headers \
--with-newlib \
--disable-decimal-float \
--disable-nls
make
make all-gcc all-target-libgcc

View File

@ -2,6 +2,6 @@
. config/options
make -C $BUILD/gcc*/objdir-$1 install
make -C $BUILD/gcc*/objdir-$1 install-gcc install-target-libgcc
$SCRIPTS/install ccache toolchain