OSDN Git Service

* objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'.
authorgeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Oct 2002 21:00:54 +0000 (21:00 +0000)
committergeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 9 Oct 2002 21:00:54 +0000 (21:00 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57993 138bc75d-0d04-0410-961f-82ee72b054a4

contrib/regression/ChangeLog
contrib/regression/objs-gcc.sh

index e5239c5..a32bf85 100644 (file)
@@ -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.
index 839fcff..5171b2e 100755 (executable)
@@ -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