config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Apr 17 22:24:42 2007 +0000 (2007-04-17)
changeset 41 fd6ad5721f77
child 95 57694569322b
permissions -rw-r--r--
Add the EXPERIMENTAL option to show options marked as such.
Add the four types of toolchains ct-ng is able to build as EXPERIMENTAL, except for CROSS which *is* functional.
Reorder menus accordingly.
     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