diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-11 21:13:36 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-11 21:13:36 +0000 |
commit | d0b17e8580b2ec7e18dda0793c90b92978313b41 (patch) | |
tree | b2da34877b8761f6c1b407066e1281e6698be3dd /contrib | |
parent | cbe414361810b588e8dddefb1bd0c3c4ccb49008 (diff) | |
download | gcc-d0b17e8580b2ec7e18dda0793c90b92978313b41.tar.gz |
* gcc_build: Output information about the commands used to
configure the compiler.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43222 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 5 | ||||
-rwxr-xr-x | contrib/gcc_build | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 0077fb0e37a..daebeb2479f 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,8 @@ +2001-06-11 Mark Mitchell <mark@codesourcery.com> + + * gcc_build: Output information about the commands used to + configure the compiler. + 2001-06-07 Joseph S. Myers <jsm28@cam.ac.uk> * gennews: Update for GCC 3.0. 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" } |