config/libc.in
changeset 1 eeea35fbf182
child 95 57694569322b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/libc.in	Sat Feb 24 11:00:05 2007 +0000
     1.3 @@ -0,0 +1,36 @@
     1.4 +# C library options
     1.5 +
     1.6 +menu "C-library"
     1.7 +
     1.8 +choice
     1.9 +    bool
    1.10 +    prompt "C-library to use:"
    1.11 +    default LIBC_GLIBC
    1.12 +
    1.13 +config LIBC_GLIBC
    1.14 +    bool
    1.15 +    prompt "glibc"
    1.16 +
    1.17 +config LIBC_UCLIBC
    1.18 +    bool
    1.19 +    prompt "uClibc"
    1.20 +
    1.21 +endchoice
    1.22 +
    1.23 +config LIBC_VERSION
    1.24 +    string
    1.25 +
    1.26 +config LIBC
    1.27 +    string
    1.28 +    default "glibc" if LIBC_GLIBC
    1.29 +    default "uClibc" if LIBC_UCLIBC
    1.30 +
    1.31 +if LIBC_GLIBC
    1.32 +source config/libc_glibc.in
    1.33 +endif
    1.34 +
    1.35 +if LIBC_UCLIBC
    1.36 +source config/libc_uClibc.in
    1.37 +endif
    1.38 +
    1.39 +endmenu