scripts/build/cc_gcc.sh
changeset 462 b959799c9a36
parent 414 12919d5777fb
child 466 7f9bbf94b0bb
     1.1 --- a/scripts/build/cc_gcc.sh	Wed Jan 16 22:15:16 2008 +0000
     1.2 +++ b/scripts/build/cc_gcc.sh	Mon Apr 28 07:44:22 2008 +0000
     1.3 @@ -31,24 +31,19 @@
     1.4  do_cc_core_pass_1() {
     1.5      # In case we're NPTL, build the static core gcc;
     1.6      # in any other case, do nothing.
     1.7 -    CT_DoStep INFO "Core C compiler, pass 1"
     1.8      case "${CT_THREADS}" in
     1.9          nptl)   do_cc_core_static;;
    1.10 -        *)      CT_DoLog INFO "Nothing to do";;
    1.11      esac
    1.12 -    CT_EndStep
    1.13  }
    1.14  
    1.15  # Core gcc pass 2
    1.16  do_cc_core_pass_2() {
    1.17      # In case we're NPTL, build the shared core gcc,
    1.18      # in any other case, build the static core gcc.
    1.19 -    CT_DoStep INFO "Core C compiler, pass 2"
    1.20      case "${CT_THREADS}" in
    1.21          nptl)   do_cc_core_shared;;
    1.22          *)      do_cc_core_static;;
    1.23      esac
    1.24 -    CT_EndStep
    1.25  }
    1.26  
    1.27  #------------------------------------------------------------------------------