diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-06-11 21:13:36 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-06-11 21:13:36 +0000 |
commit | 72e0bae59f2656ffb4983445b4d01b7965a4e18e (patch) | |
tree | b2da34877b8761f6c1b407066e1281e6698be3dd /contrib/gcc_build | |
parent | d7d9c429a5c394d31fdc2f8e8487c1a32ca02dbe (diff) | |
download | gcc-72e0bae59f2656ffb4983445b4d01b7965a4e18e.zip gcc-72e0bae59f2656ffb4983445b4d01b7965a4e18e.tar.gz gcc-72e0bae59f2656ffb4983445b4d01b7965a4e18e.tar.bz2 |
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
Diffstat (limited to 'contrib/gcc_build')
-rwxr-xr-x | contrib/gcc_build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/gcc_build b/contrib/gcc_build index 7e33982..4d0eea3 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" } |