config/libc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
child 95 57694569322b
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
     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