aboutsummaryrefslogtreecommitdiff
path: root/config/libc
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-11-13 10:33:24 -0800
committerGitHub <noreply@github.com>2016-11-13 10:33:24 -0800
commit8fbe000639d408f61ba216bbeb42d4a55e45a00a (patch)
treedb7b5888c7f3202a59d23389ed643205e94a63e4 /config/libc
parent2d2bf76e9132693e6c7d424f646dc4c92eb17434 (diff)
parent2cc9e68596005f5e742b5aae0bb8b73cd15cf367 (diff)
downloadcrosstool-ng-8fbe000639d408f61ba216bbeb42d4a55e45a00a.tar.gz
crosstool-ng-8fbe000639d408f61ba216bbeb42d4a55e45a00a.tar.bz2
crosstool-ng-8fbe000639d408f61ba216bbeb42d4a55e45a00a.zip
Merge pull request #368 from dremon/master
MinGW: add C++11 posix threads support
Diffstat (limited to 'config/libc')
-rw-r--r--config/libc/mingw.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in
index 88088e9b..45b69715 100644
--- a/config/libc/mingw.in
+++ b/config/libc/mingw.in
@@ -3,12 +3,14 @@
## 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.
config THREADS
- default "win32"
+ default "win32" if THREADS_NATIVE
+ default "posix" if THREADS_POSIX
choice
bool