summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haubenwallner <haubi@gentoo.org>2018-06-20 18:28:52 +0200
committerMichael Haubenwallner <haubi@gentoo.org>2018-07-09 18:20:11 +0200
commit7376a192f14de94ee8b3e97c396709aaecbc5290 (patch)
treeb84348a64eedea02251e0c69b8d99506ef8088db /eclass/toolchain.eclass
parenttoolchain.eclass: D->ED for where to start cleanups (diff)
downloadgentoo-7376a192f14de94ee8b3e97c396709aaecbc5290.tar.gz
gentoo-7376a192f14de94ee8b3e97c396709aaecbc5290.tar.bz2
gentoo-7376a192f14de94ee8b3e97c396709aaecbc5290.zip
toolchain.eclass: Cygwin provides posix threads
Upstream Cygwin does build their gcc with posix threads for ages, at least since gcc4-4.5.1-1.cygport (committed on Oct 3, 2010).
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r--eclass/toolchain.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 9a0080af57ee..241a3ea89f46 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1034,7 +1034,7 @@ toolchain_src_configure() {
confgcc+=( --enable-shared )
fi
case ${CHOST} in
- mingw*|*-mingw*|*-cygwin)
+ mingw*|*-mingw*)
confgcc+=( --enable-threads=win32 ) ;;
*)
confgcc+=( --enable-threads=posix ) ;;