summaryrefslogtreecommitdiff
path: root/contrib/regression/objs-gcc.sh
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2002-10-09 21:00:54 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2002-10-09 21:00:54 +0000
commitb4d8dbcfa1342d9e2be07281acee5d483c4c550e (patch)
treee14c5f76b3d36bb9d8cc2892876365b53d2ffb15 /contrib/regression/objs-gcc.sh
parent44a5565d43aa79ea9fa56e5d696b59d12db33191 (diff)
downloadgcc-b4d8dbcfa1342d9e2be07281acee5d483c4c550e.tar.gz
* objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
From-SVN: r57993
Diffstat (limited to 'contrib/regression/objs-gcc.sh')
-rwxr-xr-xcontrib/regression/objs-gcc.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/regression/objs-gcc.sh b/contrib/regression/objs-gcc.sh
index 839fcffb612..5171b2ef775 100755
--- a/contrib/regression/objs-gcc.sh
+++ b/contrib/regression/objs-gcc.sh
@@ -104,6 +104,9 @@ if [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-gnu ]
then
make all-gdb all-dejagnu all-ld || exit 1
make install-gdb install-dejagnu install-ld || exit 1
+elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then
+ make bootstrap || exit 1
+ make install || exit 1
else
make || exit 1
make install || exit 1