mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
5a0be8b4ec
With libc_headers step before pass-1, there is no need to distinguish pass-1 and pass-2; they are configured identically (note that with the current configuration, core pass-2 is only used for win32 - hence, uses build_libgcc=yes and mode=static). Signed-off-by: Alexey Neyman <stilor@att.net>
39 lines
906 B
Plaintext
39 lines
906 B
Plaintext
# mingw options
|
|
|
|
## depends on WINDOWS
|
|
##
|
|
## select LIBC_SUPPORT_THREADS_NATIVE
|
|
## select LIBC_SUPPORT_THREADS_POSIX
|
|
## select CC_CORE_NEEDED
|
|
## select BINUTILS_FORCE_LD_BFD_DEFAULT
|
|
##
|
|
## help The de-facto standard for Mingw distributions.
|
|
|
|
config THREADS
|
|
default "win32" if THREADS_NATIVE
|
|
default "posix" if THREADS_POSIX
|
|
|
|
config MINGW_SECURE_API
|
|
bool "Expose secure API prototypes"
|
|
default y
|
|
|
|
config MINGW_DIRECTX
|
|
bool "Include DirectX development files"
|
|
|
|
config MINGW_DDK
|
|
bool "Include DDK development files"
|
|
|
|
config MINGW_TOOLS
|
|
bool "Include the companion tools"
|
|
default y
|
|
help
|
|
Build the companion tools with mingw such as widl, gendef,
|
|
and genpeimg.
|
|
|
|
config MINGW_TOOL_LIST_ARRAY
|
|
string "List of mingw-w64 tools to build"
|
|
default "gendef genidl genlib genpeimg widl"
|
|
depends on MINGW_TOOLS
|
|
help
|
|
List of mingw-w64 tools to build.
|