scripts/build/libc_uClibc.sh
changeset 78 c3868084d81a
parent 64 7dab8d1a2426
child 108 69407950a2a2
     1.1 --- a/scripts/build/libc_uClibc.sh	Mon May 07 15:57:02 2007 +0000
     1.2 +++ b/scripts/build/libc_uClibc.sh	Tue May 08 17:48:32 2007 +0000
     1.3 @@ -68,13 +68,13 @@
     1.4      # use of the native build host tools, which we need at this
     1.5      # stage, as we don't have target tools yet.
     1.6      CT_DoLog EXTRA "Applying configuration"
     1.7 -    CT_DoYes "" |make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig 2>&1 |CT_DoLog DEBUG
     1.8 +    CT_DoYes "" |make CROSS= PREFIX="${CT_SYSROOT_DIR}/" oldconfig 2>&1 |CT_DoLog ALL
     1.9  
    1.10      CT_DoLog EXTRA "Building headers"
    1.11 -    make ${PARALLELMFLAGS} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers 2>&1 |CT_DoLog DEBUG
    1.12 +    make ${PARALLELMFLAGS} CROSS= PREFIX="${CT_SYSROOT_DIR}/" headers 2>&1 |CT_DoLog ALL
    1.13  
    1.14      CT_DoLog EXTRA "Installing headers"
    1.15 -    make CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev 2>&1 |CT_DoLog DEBUG
    1.16 +    make CROSS= PREFIX="${CT_SYSROOT_DIR}/" install_dev 2>&1 |CT_DoLog ALL
    1.17  
    1.18      CT_EndStep
    1.19  }
    1.20 @@ -104,7 +104,7 @@
    1.21      CT_DoYes "" |make ${PARALLELMFLAGS}             \
    1.22                        CROSS=${CT_TARGET}-           \
    1.23                        PREFIX="${CT_SYSROOT_DIR}/"   \
    1.24 -                      oldconfig                     2>&1 |CT_DoLog DEBUG
    1.25 +                      oldconfig                     2>&1 |CT_DoLog ALL
    1.26  
    1.27      # We do _not_ want to strip anything for now, in case we specifically
    1.28      # asked for a debug toolchain, thus the STRIPTOOL= assignment
    1.29 @@ -113,7 +113,7 @@
    1.30           CROSS=${CT_TARGET}-            \
    1.31           PREFIX="${CT_SYSROOT_DIR}/"    \
    1.32           STRIPTOOL=true                 \
    1.33 -         all                            2>&1 |CT_DoLog DEBUG
    1.34 +         all                            2>&1 |CT_DoLog ALL
    1.35  
    1.36      # YEM-FIXME: we want to install libraries in $SYSROOT/lib, but we don't want
    1.37      # to install headers in $SYSROOT/include, thus making only install_runtime.
    1.38 @@ -127,17 +127,14 @@
    1.39      make CROSS=${CT_TARGET}-            \
    1.40           PREFIX="${CT_SYSROOT_DIR}/"    \
    1.41           STRIPTOOL=true                 \
    1.42 -         install                        2>&1 |CT_DoLog DEBUG
    1.43 +         install                        2>&1 |CT_DoLog ALL
    1.44  
    1.45      CT_EndStep
    1.46  }
    1.47  
    1.48  # This function is used to install those components needing the final C compiler
    1.49  do_libc_finish() {
    1.50 -    CT_DoStep INFO "Finishing C library"
    1.51 -    # uClibc has nothing to finish
    1.52 -    CT_DoLog EXTRA "uClibc has nothing to finish"
    1.53 -    CT_EndStep
    1.54 +    :
    1.55  }
    1.56  
    1.57  # Initialises the .config file to sensible values