diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-08 17:48:32 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-05-08 17:48:32 +0000 |
commit | 8a2b17ab5eb0b279354b431d6a83c39751a36d6a (patch) | |
tree | 8a4f95a0b71cdaf2086470b92d3703e1a9d3c654 /config/global.in | |
parent | 5856bb8c5e8db06bce1e8bf5c31f1fc554e8c086 (diff) | |
download | crosstool-ng-8a2b17ab5eb0b279354b431d6a83c39751a36d6a.tar.gz crosstool-ng-8a2b17ab5eb0b279354b431d6a83c39751a36d6a.tar.bz2 crosstool-ng-8a2b17ab5eb0b279354b431d6a83c39751a36d6a.zip |
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 'config/global.in')
-rw-r--r-- | config/global.in | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/config/global.in b/config/global.in index 1f9c98f7..9378bdf9 100644 --- a/config/global.in +++ b/config/global.in @@ -242,8 +242,13 @@ config LOG_DEBUG bool prompt "DEBUG" help - The same as above, plus lots of debug information, of which each - component's build messages (very noisy!). + The same as above, plus lots of crosstool-NG debug information. + +config LOG_ALL + bool + prompt "ALL" + help + The same as above, plus all components build messages (very noisy!). endchoice @@ -254,6 +259,7 @@ config LOG_LEVEL_MAX default "INFO" if LOG_INFO default "EXTRA" if LOG_EXTRA default "DEBUG" if LOG_DEBUG + default "ALL" if LOG_ALL config LOG_SEE_TOOLS_WARN bool @@ -271,7 +277,7 @@ config LOG_PROGRESS_BAR bool prompt "Progress bar" default n - depends on ! LOG_DEBUG + depends on ! LOG_ALL help This option will print a "rotating bar" (/-\|) below the last log line to show work is not stalled. |