mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
838bf3a74b
This change removes 1.0.3 and 1.1.3 and linker regession patches for those versions. We add 1.0.4, and a patch needed for gcc-4.9.x which defines `max_align_t'. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
44 lines
954 B
Plaintext
44 lines
954 B
Plaintext
# musl options
|
|
|
|
## depends on ! WINDOWS && ! BARE_METAL
|
|
##
|
|
## select LIBC_SUPPORT_THREADS_NATIVE
|
|
## select CC_CORE_PASSES_NEEDED
|
|
##
|
|
## help Musl is a new standard library to power a new generation of Linux-based
|
|
## help devices. musl is lightweight, fast, simple, free, and strives to be
|
|
## help correct in the sense of standards-conformance and safety.
|
|
|
|
config THREADS
|
|
default "musl"
|
|
|
|
choice
|
|
bool
|
|
prompt "musl version"
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
|
|
config LIBC_MUSL_V_1_1_4
|
|
bool
|
|
prompt "1.1.4 (Mainline)"
|
|
depends on EXPERIMENTAL
|
|
|
|
config LIBC_MUSL_V_1_0_4
|
|
bool
|
|
prompt "1.0.4 (Stable)"
|
|
|
|
config LIBC_MUSL_V_CUSTOM
|
|
bool
|
|
prompt "Custom musl"
|
|
depends on EXPERIMENTAL
|
|
|
|
endchoice
|
|
|
|
config LIBC_VERSION
|
|
string
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "1.1.4" if LIBC_MUSL_V_1_1_4
|
|
default "1.0.4" if LIBC_MUSL_V_1_0_4
|
|
default "custom" if LIBC_MUSL_V_CUSTOM
|