cc/gcc: do not print 'core' or 'final'
author"Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Nov 25 18:22:38 2012 +0100 (2012-11-25)
changeset 313336aa2ae92c29
parent 3132 be7a7e33bdf0
child 3134 863723936e24
cc/gcc: do not print 'core' or 'final'

In gcc-'s core and final passes, do not print 'core' or 'final' in
log messages. We already print it in step messages.

Also, as we use the core backend to build the bare-metal final gcc,
it can be disturbing to read 'core' while we're in fact in 'final'.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
scripts/build/cc/gcc.sh
     1.1 --- a/scripts/build/cc/gcc.sh	Mon Nov 26 11:44:01 2012 +0100
     1.2 +++ b/scripts/build/cc/gcc.sh	Sun Nov 25 18:22:38 2012 +0100
     1.3 @@ -191,7 +191,7 @@
     1.4          eval "${arg// /\\ }"
     1.5      done
     1.6  
     1.7 -    CT_DoLog EXTRA "Configuring core C compiler"
     1.8 +    CT_DoLog EXTRA "Configuring gcc"
     1.9  
    1.10      case "${mode}" in
    1.11          static)
    1.12 @@ -444,10 +444,10 @@
    1.13          core_targets+=( target-libstdc++-v3 )
    1.14      fi
    1.15  
    1.16 -    CT_DoLog EXTRA "Building core C compiler"
    1.17 +    CT_DoLog EXTRA "Building gcc"
    1.18      CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/all-}"
    1.19  
    1.20 -    CT_DoLog EXTRA "Installing core C compiler"
    1.21 +    CT_DoLog EXTRA "Installing gcc"
    1.22      CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/install-}"
    1.23  
    1.24      if [ "${build_manuals}" = "yes" ]; then
    1.25 @@ -590,7 +590,7 @@
    1.26          eval "${arg// /\\ }"
    1.27      done
    1.28  
    1.29 -    CT_DoLog EXTRA "Configuring final compiler"
    1.30 +    CT_DoLog EXTRA "Configuring gcc"
    1.31  
    1.32      # Enable selected languages
    1.33      extra_config+=("--enable-languages=${lang_list}")
    1.34 @@ -809,10 +809,10 @@
    1.35          CT_DoExecLog ALL make ${JOBSFLAGS} all-build-libiberty
    1.36      fi
    1.37  
    1.38 -    CT_DoLog EXTRA "Building final compiler"
    1.39 +    CT_DoLog EXTRA "Building gcc"
    1.40      CT_DoExecLog ALL make ${JOBSFLAGS} all
    1.41  
    1.42 -    CT_DoLog EXTRA "Installing final compiler"
    1.43 +    CT_DoLog EXTRA "Installing gcc"
    1.44      CT_DoExecLog ALL make ${JOBSFLAGS} install
    1.45  
    1.46      if [ "${build_manuals}" = "yes" ]; then