config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Apr 18 17:35:04 2007 +0000 (2007-04-18)
changeset 44 1bfe65e14402
child 95 57694569322b
permissions -rw-r--r--
Maybe one time we'll have subdirs in the config/ directory: find all dependencies for .config.
Remove never used include (was commented out anyway). Might come back later when we play with canadian-crosses.
     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