mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
de5df0533c
That still leaves the linuxthreads stuff broken, but it was just before. I don't care anyway. Time to fix that later...
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
|