From ab842ecf200e4300d311b81077512211d174d652 Mon Sep 17 00:00:00 2001 From: wilkie Date: Sun, 4 Apr 2010 15:07:37 -0400 Subject: [PATCH] Fixed GCC (pre-newlib) building. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ef0b812..f8c32da 100755 --- a/build.sh +++ b/build.sh @@ -94,7 +94,7 @@ cd ../.. echo "COMPILE GCC" cd gcc-obj -../gcc-${GCC_VER}/configure --target=$TARGET --prefix=$PREFIX --enable-languages=c,c++,fortran --disable-libssp --with-gmp=$PREFIX --with-mpfr=$PREFIX --disable-nls --with-headers=$PREFIX/include --with-newlib || exit +../gcc-${GCC_VER}/configure --target=$TARGET --prefix=$PREFIX --enable-languages=c,c++,fortran --disable-libssp --with-gmp=$PREFIX --with-mpfr=$PREFIX --disable-nls --with-newlib || exit make all-gcc || exit make install-gcc || exit cd ..