config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 27 11:19:12 2008 +0000 (2008-06-27)
changeset 627 17a57be570a5
parent 446 d205527c5e01
child 710 021546adce69
permissions -rw-r--r--
Update the samples.

/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 13 8 5 0 +++--
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 35 24 11 0 +++++++++----
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 11 7 4 0 +++-
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 11 7 4 0 +++-
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 19 11 8 0 ++++---
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 11 7 4 0 +++-
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 11 7 4 0 +++-
/trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 11 7 4 0 +++-
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 11 7 4 0 +++-
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 16 10 6 0 ++++--
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 13 8 5 0 +++--
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 11 7 4 0 +++-
12 files changed, 110 insertions(+), 63 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