mirror of git://gcc.gnu.org/git/gcc.git
btest-gcc.sh: Don't pass --with-newlib when target is "*-linux*".
* btest-gcc.sh <Build>: Don't pass --with-newlib when target is "*-linux*". From-SVN: r100649
This commit is contained in:
parent
e7700967a1
commit
7721d5d4cb
|
@ -1,5 +1,8 @@
|
||||||
2005-06-06 Hans-Peter Nilsson <hp@axis.com>
|
2005-06-06 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* btest-gcc.sh <Build>: Don't pass --with-newlib when target is
|
||||||
|
"*-linux*".
|
||||||
|
|
||||||
* btest-gcc.sh (TESTLOGS): Make libstdc++.sum optional.
|
* btest-gcc.sh (TESTLOGS): Make libstdc++.sum optional.
|
||||||
|
|
||||||
2004-11-07 James A. Morrison <phython@gcc.gnu.org>
|
2004-11-07 James A. Morrison <phython@gcc.gnu.org>
|
||||||
|
|
|
@ -110,8 +110,12 @@ if [ $H_HOST = $H_TARGET ] ; then
|
||||||
make all || exit 1
|
make all || exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
$SOURCE/configure --prefix=$PREFIX --target=$H_TARGET \
|
withopt="--with-gnu-ld --with-gnu-as"
|
||||||
--with-gnu-ld --with-gnu-as --with-newlib || exit 1
|
case "$H_TARGET" in
|
||||||
|
*-linux*) ;;
|
||||||
|
*) withopt="$withopt --with-newlib";;
|
||||||
|
esac
|
||||||
|
$SOURCE/configure --prefix=$PREFIX --target=$H_TARGET $withopt || exit 1
|
||||||
make || exit 1
|
make || exit 1
|
||||||
fi
|
fi
|
||||||
echo error > $RESULT || exit 1
|
echo error > $RESULT || exit 1
|
||||||
|
|
Loading…
Reference in New Issue