- fixed board file for ml402

- no lto

git-svn-id: http://moon:8086/svn/mips@139 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2017-02-08 20:36:49 +00:00
parent 3d5f7a19ba
commit 0b95ef9399
4 changed files with 24 additions and 13 deletions
+3 -2
View File
@@ -31,7 +31,7 @@ if [ ! -e ./$SRC_BINUTILS-build ]; then
echo Building $SRC_BINUTILS
mkdir -p $SRC_BINUTILS-build
cd $SRC_BINUTILS-build
../$SRC_BINUTILS/configure --target=$TARGET --prefix=$PREFIX --enable-plugins --enable-lto || exit 1
../$SRC_BINUTILS/configure --target=$TARGET --prefix=$PREFIX || exit 1
make -j4 || exit 1
make install || exit 1
cd ..
@@ -171,7 +171,7 @@ if [ ! -e ./$SRC_GCC-build ]; then
echo Building $SRC_GCC
mkdir -p $SRC_GCC-build
cd $SRC_GCC-build
../$SRC_GCC/configure --target=$TARGET --prefix=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-float=soft --with-newlib --verbose --enable-languages="c,c++" --with-gnu-as --with-gnu-ld --enable-lto || exit 1
../$SRC_GCC/configure --target=$TARGET --prefix=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-float=soft --with-newlib --verbose --enable-languages="c,c++" --with-gnu-as --with-gnu-ld || exit 1
make -j4 all || exit 1
make info || exit 1
make install || exit 1
@@ -215,3 +215,4 @@ fi
echo Finished building toolchain.