summaryrefslogtreecommitdiff
path: root/scripts/crosstool.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-08 17:48:32 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-08 17:48:32 (GMT)
commit8a2b17ab5eb0b279354b431d6a83c39751a36d6a (patch)
tree8a4f95a0b71cdaf2086470b92d3703e1a9d3c654 /scripts/crosstool.sh
parent5856bb8c5e8db06bce1e8bf5c31f1fc554e8c086 (diff)
Huge fixes to glibc build, so that we can build at least (and at last):
- use ports addon even when installing headers, - use optimisation (-O) when installing headers, to avoid unnecessary warnings (thanks Robert P. J. DAY for pointing this out!), - lowest kernel version to use is only X.Y.Z, not X.Y.Z.T, - a bit of preparations for NPTL (RSN I hope), - fix fixing the linker scripts (changing the backup file is kind of useless and stupid); Shut uClibc finish step: there really is nothing to do; Add a patch for glibc-2.3.6 weak aliases handling on some archs (ARM and ALPHA at least); Did not catch the make errors: fixed the pattern matching in scripts/functions; Introduce a new log level, ALL: - send components' build messages there, - DEBUG log level is destined only for crosstool-NG debug messages, - migrate sub-actions to use appropriate log levels; Update the armeb-unknown-linux-gnu sample: - it builds! - uses gcc-4.0.4 and glibc-2.3.6, - updated to latest config options set.
Diffstat (limited to 'scripts/crosstool.sh')
-rwxr-xr-xscripts/crosstool.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh
index f11fffe..92e3a4f 100755
--- a/scripts/crosstool.sh
+++ b/scripts/crosstool.sh
@@ -64,7 +64,8 @@ if [ "${CT_LOG_USE_COLORS}" = "y" ]; then
CT_WARN_COLOR="${_A_NOR}${_A_BRI}${_F_YEL}"
CT_INFO_COLOR="${_A_NOR}${_A_BRI}${_F_GRN}"
CT_EXTRA_COLOR="${_A_NOR}${_A_DIM}${_F_GRN}"
- CT_DEBUG_COLOR="${_A_NOR}${_A_DIM}${_F_WHI}"
+ CT_DEBUG_COLOR="${_A_NOR}${_A_BRI}${_F_BLU}"
+ CT_ALL_COLOR="${_A_NOR}${_A_DIM}${_F_WHI}"
CT_NORMAL_COLOR="${_A_NOR}"
else
CT_ERROR_COLOR=
@@ -72,6 +73,7 @@ else
CT_INFO_COLOR=
CT_EXTRA_COLOR=
CT_DEBUG_COLOR=
+ CT_ALL_COLOR=
CT_NORMAL_COLOR=
fi