summaryrefslogtreecommitdiff
path: root/scripts/build/binutils.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/binutils.sh')
-rw-r--r--scripts/build/binutils.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/binutils.sh b/scripts/build/binutils.sh
index 7a3497d..d2ab56f 100644
--- a/scripts/build/binutils.sh
+++ b/scripts/build/binutils.sh
@@ -30,13 +30,13 @@ do_binutils() {
--prefix=${CT_PREFIX_DIR} \
--disable-nls \
${CT_BINUTILS_EXTRA_CONFIG} \
- ${BINUTILS_SYSROOT_ARG} 2>&1 |CT_DoLog DEBUG
+ ${BINUTILS_SYSROOT_ARG} 2>&1 |CT_DoLog ALL
CT_DoLog EXTRA "Building binutils"
- make ${PARALLELMFLAGS} 2>&1 |CT_DoLog DEBUG
+ make ${PARALLELMFLAGS} 2>&1 |CT_DoLog ALL
CT_DoLog EXTRA "Installing binutils"
- make install 2>&1 |CT_DoLog DEBUG
+ make install 2>&1 |CT_DoLog ALL
# Make those new tools available to the core C compiler to come:
# Note: some components want the ${TARGET}-{ar,as,ld,strip} commands as
@@ -46,7 +46,7 @@ do_binutils() {
for t in ar as ld strip; do
ln -sv "${CT_PREFIX_DIR}/bin/${CT_TARGET}-${t}" "${CT_CC_CORE_PREFIX_DIR}/${CT_TARGET}/bin/${t}"
ln -sv "${CT_PREFIX_DIR}/bin/${CT_TARGET}-${t}" "${CT_CC_CORE_PREFIX_DIR}/bin/${CT_TARGET}-${t}"
- done |CT_DoLog DEBUG
+ done |CT_DoLog ALL
CT_EndStep
}