diff options
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 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" } |