summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-02 09:26:57 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-02 09:26:57 (GMT)
commitc64da6b7d4ce4cb4006c1cd78e281777b0e2dc96 (patch)
tree37da2b1623b7c9ead10c59b32fe4fc1a21224215 /scripts
parent2863a699443b8c2e5ed82440a53bb704168a3587 (diff)
Print a log message when entering/leaving the two core compiler passes.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/cc_gcc.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/build/cc_gcc.sh b/scripts/build/cc_gcc.sh
index eae0c31..8e042b3 100644
--- a/scripts/build/cc_gcc.sh
+++ b/scripts/build/cc_gcc.sh
@@ -31,20 +31,24 @@ do_cc_extract() {
do_cc_core_pass_1() {
# In case we're NPTL, build the static core gcc;
# in any other case, do nothing.
+ CT_DoStep INFO "Core C compiler, pass 1"
case "${CT_THREADS}" in
nptl) do_cc_core_static;;
- *) ;;
+ *) CT_DoLog INFO "Nothing to do";;
esac
+ CT_EndStep
}
# Core gcc pass 2
do_cc_core_pass_2() {
# In case we're NPTL, build the shared core gcc,
# in any other case, build the static core gcc.
+ CT_DoStep INFO "Core C compiler, pass 2"
case "${CT_THREADS}" in
nptl) do_cc_core_shared;;
*) do_cc_core_static;;
esac
+ CT_EndStep
}
#------------------------------------------------------------------------------