Skip to content
Snippets Groups Projects
Commit 7721d5d4 authored by Hans-Peter Nilsson's avatar Hans-Peter Nilsson Committed by Hans-Peter Nilsson
Browse files

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
parent e7700967
No related branches found
No related tags found
No related merge requests found
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.
2004-11-07 James A. Morrison <phython@gcc.gnu.org>
......
......@@ -110,8 +110,12 @@ if [ $H_HOST = $H_TARGET ] ; then
make all || exit 1
fi
else
$SOURCE/configure --prefix=$PREFIX --target=$H_TARGET \
--with-gnu-ld --with-gnu-as --with-newlib || exit 1
withopt="--with-gnu-ld --with-gnu-as"
case "$H_TARGET" in
*-linux*) ;;
*) withopt="$withopt --with-newlib";;
esac
$SOURCE/configure --prefix=$PREFIX --target=$H_TARGET $withopt || exit 1
make || exit 1
fi
echo error > $RESULT || exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment