mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
1906cf93f8
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... :-(
37 lines
451 B
Plaintext
37 lines
451 B
Plaintext
# 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
|