config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Apr 23 20:30:34 2007 +0000 (2007-04-23)
changeset 47 7e2539937b6e
child 95 57694569322b
permissions -rw-r--r--
Second shot at merging from the MIPS branch:
- log level boost for warnings and errors
- option re-ordering
- help updating
     1 # C library options
     2 
     3 menu "C-library"
     4 
     5 choice
     6     bool
     7     prompt "C-library to use:"
     8     default LIBC_GLIBC
     9 
    10 config LIBC_GLIBC
    11     bool
    12     prompt "glibc"
    13 
    14 config LIBC_UCLIBC
    15     bool
    16     prompt "uClibc"
    17 
    18 endchoice
    19 
    20 config LIBC_VERSION
    21     string
    22 
    23 config LIBC
    24     string
    25     default "glibc" if LIBC_GLIBC
    26     default "uClibc" if LIBC_UCLIBC
    27 
    28 if LIBC_GLIBC
    29 source config/libc_glibc.in
    30 endif
    31 
    32 if LIBC_UCLIBC
    33 source config/libc_uClibc.in
    34 endif
    35 
    36 endmenu