From 42dcabb1fa3b3fc523ba71b7bf3158555784908b Mon Sep 17 00:00:00 2001 From: mmitchel Date: Mon, 11 Jun 2001 21:09:21 +0000 Subject: [PATCH] * gcc_build: Output information about the commands used to configure the compiler. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_0-branch@43221 138bc75d-0d04-0410-961f-82ee72b054a4 --- contrib/ChangeLog | 5 +++++ contrib/gcc_build | 2 ++ 2 files changed, 7 insertions(+) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index b96ec944ceb..494ddb6749b 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-09 Joseph S. Myers * gcc_update: Update for move of documentation to gcc/doc. diff --git a/contrib/gcc_build b/contrib/gcc_build index 7e33982e822..4d0eea30b6b 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.11.4.GIT