# HG changeset patch # User "Yann E. MORIN" # Date 1188725217 0 # Node ID cf673077c0c1bd4e4a51e4d86ef416377187fb4c # Parent 3e55465915d252bbab8e32edd2d6ac3fba7a8c58 Print a log message when entering/leaving the two core compiler passes. diff -r 3e55465915d2 -r cf673077c0c1 scripts/build/cc_gcc.sh --- a/scripts/build/cc_gcc.sh Sun Sep 02 09:24:15 2007 +0000 +++ b/scripts/build/cc_gcc.sh Sun Sep 02 09:26:57 2007 +0000 @@ -31,20 +31,24 @@ 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 } #------------------------------------------------------------------------------