From 4cec0d64c37f204d950963e8d6a39facd8bfada3 Mon Sep 17 00:00:00 2001 From: wilkie Date: Mon, 5 Apr 2010 20:35:46 -0400 Subject: [PATCH] Added Fortran as a target --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index d9fe844..752b466 100755 --- a/build.sh +++ b/build.sh @@ -102,8 +102,8 @@ cd ../.. echo "COMPILE GCC" cd gcc-obj -../gcc-${GCC_VER}/configure --target=$TARGET --prefix=$PREFIX --enable-languages=c,c++ --disable-libssp --with-gmp=$PREFIX --with-mpfr=$PREFIX --disable-nls --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 +#../gcc-${GCC_VER}/configure --target=$TARGET --prefix=$PREFIX --enable-languages=c,c++ --disable-libssp --with-gmp=$PREFIX --with-mpfr=$PREFIX --disable-nls --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 ..