config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 20 21:32:39 2008 +0000 (2008-05-20)
changeset 523 010f6f4e4dd6
parent 446 d205527c5e01
child 710 021546adce69
permissions -rw-r--r--
Get rid of all `command` (which is a bashism), and replace them with $(command), which is POSIX.
Get rid of all remaining \"text\" in log messages and replace them with 'text'.
Optimise the progress bar, should go un-noticed at log level DEBUG and below.

/trunk/scripts/build/tools/200-sstrip.sh | 16 8 8 0 ++--
/trunk/scripts/build/libc_glibc.sh | 50 25 25 0 +++++++-------
/trunk/scripts/build/libc_uClibc.sh | 4 2 2 0
/trunk/scripts/build/debug/100-dmalloc.sh | 2 1 1 0
/trunk/scripts/build/debug/400-ltrace.sh | 2 1 1 0
/trunk/scripts/build/debug/300-gdb.sh | 8 4 4 0 +-
/trunk/scripts/build/debug/200-duma.sh | 6 3 3 0 +-
/trunk/scripts/build/kernel_linux.sh | 30 15 15 0 ++++----
/trunk/scripts/build/cc_gcc.sh | 14 7 7 0 ++--
/trunk/scripts/crosstool.sh | 54 27 27 0 ++++++++--------
/trunk/scripts/functions | 128 64 64 0 ++++++++++++++++++------------------
/trunk/scripts/saveSample.sh | 4 2 2 0
/trunk/scripts/tarball.sh.broken | 20 10 10 0 +++---
/trunk/tools/addToolVersion.sh | 8 4 4 0 +-
/trunk/tools/populate.in | 18 9 9 0 ++--
15 files changed, 182 insertions(+), 182 deletions(-)
yann@1
     1
# C library options
yann@1
     2
yann@1
     3
menu "C-library"
yann@1
     4
yann@1
     5
choice
yann@1
     6
    bool
yann@1
     7
    prompt "C-library to use:"
yann@1
     8
    default LIBC_GLIBC
yann@1
     9
yann@1
    10
config LIBC_GLIBC
yann@1
    11
    bool
yann@1
    12
    prompt "glibc"
yann@95
    13
    select LIBC_SUPPORT_NPTL
yann@95
    14
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    15
yann@1
    16
config LIBC_UCLIBC
yann@1
    17
    bool
yann@1
    18
    prompt "uClibc"
yann@95
    19
    select LIBC_SUPPORT_LINUXTHREADS
yann@1
    20
yann@1
    21
endchoice
yann@1
    22
yann@1
    23
config LIBC_VERSION
yann@1
    24
    string
yann@1
    25
yann@1
    26
config LIBC
yann@1
    27
    string
yann@1
    28
    default "glibc" if LIBC_GLIBC
yann@1
    29
    default "uClibc" if LIBC_UCLIBC
yann@1
    30
yann@95
    31
config LIBC_SUPPORT_NPTL
yann@95
    32
    bool
yann@95
    33
    default n
yann@95
    34
yann@95
    35
config LIBC_SUPPORT_LINUXTHREADS
yann@95
    36
    bool
yann@95
    37
    default n
yann@95
    38
yann@1
    39
if LIBC_GLIBC
yann@448
    40
source config/libc/glibc.in
yann@1
    41
endif
yann@1
    42
yann@1
    43
if LIBC_UCLIBC
yann@448
    44
source config/libc/uClibc.in
yann@1
    45
endif
yann@1
    46
yann@1
    47
endmenu