mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
152b7ad4b4
There is no need to differentiate the win32 threads case, since we can cosider them to be the native implementation on Windows. Besides, with the previous patch, nothing uses it anymore. So, just remove it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc Bryan Hundven <bryanhundven@gmail.com>
45 lines
831 B
Plaintext
45 lines
831 B
Plaintext
# mingw options
|
|
|
|
## depends on WINDOWS
|
|
##
|
|
## select LIBC_SUPPORT_THREADS_NATIVE
|
|
## select CC_CORE_PASSES_NEEDED
|
|
##
|
|
## help The de-facto standard for Mingw distributions.
|
|
|
|
config THREADS
|
|
default "win32"
|
|
|
|
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"
|