summaryrefslogtreecommitdiff
path: root/scripts/build/cc
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@free.fr>2012-11-25 17:22:38 (GMT)
committerYann E. MORIN" <yann.morin.1998@free.fr>2012-11-25 17:22:38 (GMT)
commit4e9c4733378bf922f92117b415362d7c5353e649 (patch)
tree6767a74a6a1af4436b87c73bbc90cde45910a0de /scripts/build/cc
parentfdac362da2595bf6cc52ed6f7144b1ec2f5adf1f (diff)
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>
Diffstat (limited to 'scripts/build/cc')
-rw-r--r--scripts/build/cc/gcc.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh
index 36a1a90..3feb25b 100644
--- a/scripts/build/cc/gcc.sh
+++ b/scripts/build/cc/gcc.sh
@@ -191,7 +191,7 @@ do_cc_core_backend() {
eval "${arg// /\\ }"
done
- CT_DoLog EXTRA "Configuring core C compiler"
+ CT_DoLog EXTRA "Configuring gcc"
case "${mode}" in
static)
@@ -444,10 +444,10 @@ do_cc_core_backend() {
core_targets+=( target-libstdc++-v3 )
fi
- CT_DoLog EXTRA "Building core C compiler"
+ CT_DoLog EXTRA "Building gcc"
CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/all-}"
- CT_DoLog EXTRA "Installing core C compiler"
+ CT_DoLog EXTRA "Installing gcc"
CT_DoExecLog ALL make ${JOBSFLAGS} "${core_targets[@]/#/install-}"
if [ "${build_manuals}" = "yes" ]; then
@@ -590,7 +590,7 @@ do_cc_backend() {
eval "${arg// /\\ }"
done
- CT_DoLog EXTRA "Configuring final compiler"
+ CT_DoLog EXTRA "Configuring gcc"
# Enable selected languages
extra_config+=("--enable-languages=${lang_list}")
@@ -809,10 +809,10 @@ do_cc_backend() {
CT_DoExecLog ALL make ${JOBSFLAGS} all-build-libiberty
fi
- CT_DoLog EXTRA "Building final compiler"
+ CT_DoLog EXTRA "Building gcc"
CT_DoExecLog ALL make ${JOBSFLAGS} all
- CT_DoLog EXTRA "Installing final compiler"
+ CT_DoLog EXTRA "Installing gcc"
CT_DoExecLog ALL make ${JOBSFLAGS} install
if [ "${build_manuals}" = "yes" ]; then