OSDN Git Service

2002-12-21 Anthony Green <green@redhat.com>
[pf3gnuchains/gcc-fork.git] / contrib / gcc_build
index 61b34e2..4d0eea3 100755 (executable)
@@ -9,7 +9,7 @@
 # Contents:
 #   Script to automatically download and build GCC.
 #
-# Copyright (c) 2000 Free Software Foundation.
+# Copyright (c) 2000, 2001 Free Software Foundation.
 #
 # This file is part of GNU CC.
 #
@@ -127,7 +127,7 @@ update_gcc() {
     changedir ${DESTINATION}
 
     # Update the tree
-    ./contrib/gcc_update || \
+    ./contrib/gcc_update -d || \
        error "Could not update GCC"
 }
 
@@ -146,6 +146,7 @@ configure_gcc() {
     changedir ${OBJDIR}
 
     # Configure the tree.
+    echo "Configuring: ${DESTINATION}/configure ${CONFIGURE_OPTIONS}"
     eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} || \
        error "Could not configure the compiler"
 }
@@ -159,6 +160,7 @@ bootstrap_gcc() {
     changedir ${OBJDIR}
 
     # Bootstrap the compiler
+    echo "Building: ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap"
     eval ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap || \
        error "Could not bootstrap the compiler"
 }