mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
53892de14c
The latest kconfig stuff is more stringent when it comes to validating the dependency of the symbols. It is no longer possible to have a symbol depend on itself (such as our construct for arch/cc/libc/... was doing). Fix our generated-file infrastructure to avoid these situations when the new kconfig stuff will be merged (in a following changeset). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
34 lines
621 B
Plaintext
34 lines
621 B
Plaintext
# mingw options
|
|
|
|
## depends on MINGW32
|
|
##
|
|
## select LIBC_SUPPORT_WIN32THREADS
|
|
##
|
|
## help The de-facto standard for Mingw distributions.
|
|
|
|
choice
|
|
bool
|
|
prompt "Mingw runtime version"
|
|
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
config MINGWRT_V_3_18
|
|
bool
|
|
prompt "3.18"
|
|
|
|
config MINGWRT_V_select
|
|
bool
|
|
prompt "Other version"
|
|
|
|
endchoice
|
|
|
|
config MINGWRT_VERSION
|
|
string
|
|
prompt "Mingw runtime version" if MINGWRT_V_select
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "3.18" if MINGWRT_V_3_18
|
|
help
|
|
Enter the version number of the mingw runtime files to use
|
|
|