From 19a1ae94b0a9e7c7ddfc73ed1a745b16690b6a88 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 27 Nov 2010 03:05:18 +0100 Subject: [PATCH] gcc-core: use gnu-as, use gnu-ld, do an full build and install Signed-off-by: Stephan Raue --- packages/toolchain/lang/gcc-core/build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/packages/toolchain/lang/gcc-core/build b/packages/toolchain/lang/gcc-core/build index 08301656f0..b5da7f54b2 100755 --- a/packages/toolchain/lang/gcc-core/build +++ b/packages/toolchain/lang/gcc-core/build @@ -16,14 +16,14 @@ mkdir -p objdir-$1 && cd objdir-$1 --target=$TARGET_NAME \ --prefix=$ROOT/$TOOLCHAIN \ --with-sysroot=$SYSROOT_PREFIX \ - --with-as=$TARGET_AS \ - --with-ld=$TARGET_LD \ --with-gmp=$ROOT/$TOOLCHAIN \ --with-mpfr=$ROOT/$TOOLCHAIN \ --with-mpc=$ROOT/$TOOLCHAIN \ --with-ppl=$ROOT/$TOOLCHAIN \ --with-cloog=$ROOT/$TOOLCHAIN \ --with-libelf=$ROOT/$TOOLCHAIN \ + --with-gnu-as \ + --with-gnu-ld \ --enable-languages=c \ --disable-__cxa_atexit \ --disable-libada \ @@ -41,6 +41,5 @@ mkdir -p objdir-$1 && cd objdir-$1 --disable-decimal-float \ --disable-nls -make all-gcc all-target-libgcc -make install-gcc install-target-libgcc - +make +make install