diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-05-14 17:52:53 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-05-14 17:52:53 +0000 |
commit | 5e2851a21945b7b0f67203c260ecdbb9d97af007 (patch) | |
tree | 54ee3ba085bcf1426e4e4fb2cc42a5864c6b8290 /config/libc/uClibc.in | |
parent | 0dad6065a6d6393e0c5cf8f82a88a62515075e97 (diff) | |
download | crosstool-ng-5e2851a21945b7b0f67203c260ecdbb9d97af007.tar.gz crosstool-ng-5e2851a21945b7b0f67203c260ecdbb9d97af007.tar.bz2 crosstool-ng-5e2851a21945b7b0f67203c260ecdbb9d97af007.zip |
Introduce a new option to render (or not) uClibc' build verbose.
/trunk/scripts/build/libc_uClibc.sh | 6 4 2 0 ++++--
/trunk/config/libc/uClibc.in | 23 23 0 0 +++++++++++++++++++++++
2 files changed, 27 insertions(+), 2 deletions(-)
Diffstat (limited to 'config/libc/uClibc.in')
-rw-r--r-- | config/libc/uClibc.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config/libc/uClibc.in b/config/libc/uClibc.in index 4f9943dc..f0ab25e9 100644 --- a/config/libc/uClibc.in +++ b/config/libc/uClibc.in @@ -59,6 +59,29 @@ config LIBC_VERSION choice bool + prompt "uClibc verbosity:" + +config LIBC_UCLIBC_VERBOSITY_0 + bool + prompt "Simplified" + help + Print simplified command lines. + +config LIBC_UCLIBC_VERBOSITY_1 + bool + prompt "Full commands" + help + Print full command lines. + +endchoice + +config LIBC_UCLIBC_VERBOSITY + string + default "" if LIBC_UCLIBC_VERBOSITY_0 + default "V=1" if LIBC_UCLIBC_VERBOSITY_1 + +choice + bool prompt "Debug level" default LIBC_UCLIBC_DEBUG_LEVEL_0 |