From: Michael Haubenwallner Date: Wed, 20 Jun 2018 16:28:52 +0000 (+0200) Subject: toolchain.eclass: Cygwin provides posix threads X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7376a192f14de94ee8b3e97c396709aaecbc5290;p=gentoo.git 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). --- 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 ) ;;