diff options
author | Alexey Neyman <stilor@att.net> | 2017-01-13 21:59:03 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-01-16 09:10:29 -0800 |
commit | 70f20b20ef9be427848a37bb5867745216283ea8 (patch) | |
tree | f98d5e0e1fb8813608e4b3d79d85b3db4c6421e4 /config/libc | |
parent | 07c82662f5064f84dff179084c841fd89c682163 (diff) | |
download | crosstool-ng-70f20b20ef9be427848a37bb5867745216283ea8.tar.gz crosstool-ng-70f20b20ef9be427848a37bb5867745216283ea8.tar.bz2 crosstool-ng-70f20b20ef9be427848a37bb5867745216283ea8.zip |
Add mingw-w64 5.0.0/5.0.1.
Also, move 'devel' to the bottom - we don't want this ever-moving tag
to be default in the released product.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/mingw.in | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in index 45b69715..8ff16653 100644 --- a/config/libc/mingw.in +++ b/config/libc/mingw.in @@ -16,14 +16,17 @@ choice bool prompt "Windows API version" -config WINAPI_V_DEVEL - bool - prompt "devel" - depends on EXPERIMENTAL - # Don't remove next line # CT_INSERT_VERSION_BELOW +config WINAPI_V_5_0_1 + bool + prompt "5.0.1" + +config WINAPI_V_5_0_0 + bool + prompt "5.0.0" + config WINAPI_V_4_0_4 bool prompt "4.0.4" @@ -60,6 +63,11 @@ config WINAPI_V_select bool prompt "Other version" +config WINAPI_V_DEVEL + bool + prompt "devel" + depends on EXPERIMENTAL + endchoice config WINAPI_VERSION @@ -68,6 +76,8 @@ config WINAPI_VERSION default "devel" if WINAPI_V_DEVEL # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "5.0.1" if WINAPI_V_5_0_1 + default "5.0.0" if WINAPI_V_5_0_0 default "4.0.4" if WINAPI_V_4_0_4 default "4.0.2" if WINAPI_V_4_0_2 default "4.0.1" if WINAPI_V_4_0_1 |