From 72e0bae59f2656ffb4983445b4d01b7965a4e18e Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Mon, 11 Jun 2001 21:13:36 +0000 Subject: [PATCH] gcc_build: Output information about the commands used to configure the compiler. * gcc_build: Output information about the commands used to configure the compiler. From-SVN: r43222 --- contrib/ChangeLog | 5 +++++ contrib/gcc_build | 2 ++ 2 files changed, 7 insertions(+) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 0077fb0e37a1..daebeb2479ff 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2001-06-11 Mark Mitchell + + * gcc_build: Output information about the commands used to + configure the compiler. + 2001-06-07 Joseph S. Myers * gennews: Update for GCC 3.0. diff --git a/contrib/gcc_build b/contrib/gcc_build index 7e33982e8222..4d0eea30b6b1 100755 --- a/contrib/gcc_build +++ b/contrib/gcc_build @@ -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" } -- 2.43.5