diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-09 21:00:54 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-09 21:00:54 +0000 |
commit | 60c29c2e4a2a296aa7ccdd57bba6cf02af9d4921 (patch) | |
tree | e14c5f76b3d36bb9d8cc2892876365b53d2ffb15 | |
parent | 4b6dfc3780723c5e933bd64087548d5288611158 (diff) | |
download | gcc-60c29c2e4a2a296aa7ccdd57bba6cf02af9d4921.tar.gz |
* objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57993 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | contrib/regression/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/regression/objs-gcc.sh | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/contrib/regression/ChangeLog b/contrib/regression/ChangeLog index e5239c5a8f9..a32bf85654e 100644 --- a/contrib/regression/ChangeLog +++ b/contrib/regression/ChangeLog @@ -1,3 +1,7 @@ +2002-10-09 Geoffrey Keating <geoffk@apple.com> + + * objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'. + 2002-03-09 Geoffrey Keating <geoffk@redhat.com> * btest-gcc.sh: For crosses, assume newlib and GNU binutils. 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 |