diff options
author | Alexey Neyman <stilor@att.net> | 2017-05-27 00:01:49 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-07-08 10:57:56 -0700 |
commit | 57426168ad2c7e8367786ed466c86f6aeb49b3c3 (patch) | |
tree | 61510389772124cc07aff4ab8b53f4fc6ed9a460 /config/libc/mingw-w64.in | |
parent | e7deac3aad394325f9e6fc6fda41d34ec94a59e0 (diff) | |
download | crosstool-ng-57426168ad2c7e8367786ed466c86f6aeb49b3c3.tar.gz crosstool-ng-57426168ad2c7e8367786ed466c86f6aeb49b3c3.tar.bz2 crosstool-ng-57426168ad2c7e8367786ed466c86f6aeb49b3c3.zip |
Convert the rest of packages to new framework
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc/mingw-w64.in')
-rw-r--r-- | config/libc/mingw-w64.in | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/config/libc/mingw-w64.in b/config/libc/mingw-w64.in new file mode 100644 index 00000000..769c976f --- /dev/null +++ b/config/libc/mingw-w64.in @@ -0,0 +1,39 @@ +# mingw options + +## depends on WINDOWS +## +## select LIBC_SUPPORT_THREADS_NATIVE +## select LIBC_SUPPORT_THREADS_POSIX +## select CC_CORE_PASS_2_NEEDED +## +## help The de-facto standard for Mingw distributions. + +source "config/versions/mingw-w64.in" + +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. |