mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
e9920217e8
It is used for skipping unnecessary compilation steps when the libc doesn't need to be compiled (eg. when we do not use a C library). Signed-off-by: Yann Diorcet <diorcet.yann@gmail.com> Message-Id: <150eadb0117e697d79aa.1353625025@blackmint> Patchwork-Id: 201222
42 lines
793 B
Plaintext
42 lines
793 B
Plaintext
# mingw options
|
|
|
|
## depends on WINDOWS
|
|
##
|
|
## select LIBC_SUPPORT_WIN32THREADS
|
|
## select CC_CORE_PASSES_NEEDED
|
|
##
|
|
## help The de-facto standard for Mingw distributions.
|
|
|
|
choice
|
|
bool
|
|
prompt "Windows API version"
|
|
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
config WINAPI_V_2_0_7
|
|
bool
|
|
prompt "2.0.7"
|
|
|
|
config WINAPI_V_select
|
|
bool
|
|
prompt "Other version"
|
|
|
|
endchoice
|
|
|
|
config WINAPI_VERSION
|
|
string
|
|
prompt "Windows API version" if WINAPI_V_select
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "2.0.7" if WINAPI_V_2_0_7
|
|
help
|
|
Enter the version number of the Windows API files to use
|
|
|
|
config MINGW_DIRECTX
|
|
bool
|
|
prompt "Include DirectX development files"
|
|
|
|
config MINGW_DDK
|
|
bool
|
|
prompt "Include DDK development files"
|