summaryrefslogtreecommitdiff
path: root/config/libc.in
blob: ba6a1bee9fed8f184a752c4f452c1837137c324c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# C library options

menu "C-library"

choice
    bool
    prompt "C-library to use:"
    default LIBC_GLIBC

config LIBC_GLIBC
    bool
    prompt "glibc"

config LIBC_UCLIBC
    bool
    prompt "uClibc"

endchoice

config LIBC_VERSION
    string

config LIBC
    string
    default "glibc" if LIBC_GLIBC
    default "uClibc" if LIBC_UCLIBC

if LIBC_GLIBC
source config/libc_glibc.in
endif

if LIBC_UCLIBC
source config/libc_uClibc.in
endif

endmenu