mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
2237fab536
Fix that. /trunk/tools/addToolVersion.sh | 26 13 13 0 +++++++++++++------------- /trunk/config/kernel/linux.in | 6 3 3 0 +++--- /trunk/config/kernel.in | 2 1 1 0 +- /trunk/config/cc.in | 2 1 1 0 +- /trunk/config/libc.in | 4 2 2 0 ++-- 5 files changed, 20 insertions(+), 20 deletions(-)
48 lines
660 B
Plaintext
48 lines
660 B
Plaintext
# C library options
|
|
|
|
menu "C-library"
|
|
|
|
choice
|
|
bool
|
|
prompt "C-library to use:"
|
|
default LIBC_GLIBC
|
|
|
|
config LIBC_GLIBC
|
|
bool
|
|
prompt "glibc"
|
|
select LIBC_SUPPORT_NPTL
|
|
select LIBC_SUPPORT_LINUXTHREADS
|
|
|
|
config LIBC_UCLIBC
|
|
bool
|
|
prompt "uClibc"
|
|
select LIBC_SUPPORT_LINUXTHREADS
|
|
|
|
endchoice
|
|
|
|
config LIBC_VERSION
|
|
string
|
|
|
|
config LIBC
|
|
string
|
|
default "glibc" if LIBC_GLIBC
|
|
default "uClibc" if LIBC_UCLIBC
|
|
|
|
config LIBC_SUPPORT_NPTL
|
|
bool
|
|
default n
|
|
|
|
config LIBC_SUPPORT_LINUXTHREADS
|
|
bool
|
|
default n
|
|
|
|
if LIBC_GLIBC
|
|
source config/libc/glibc.in
|
|
endif
|
|
|
|
if LIBC_UCLIBC
|
|
source config/libc/uClibc.in
|
|
endif
|
|
|
|
endmenu
|