Is There Support for std::thread in Mingw32? [duplicate]
Possible Duplicate:
How to enable experimental C++0x concurrency features in MinGW?
my version of mingw32 (gcc version i开发者_开发问答s 4.5.2) does not come with the class std::thread
.
Is there a version of mingw32 which supports std::thread
?
I guess that std::thread came from boost, so you can always use boost for that, plus it comes with lots of useable bits
Mingw32 is on the overly conservative side, for updated compiler technology follow MinGW-w64 which targets both 32-bit and 64-bit architectures.
http://mingw-w64.sourceforge.net/
It limits you to Cygwin or Linux et al. cross compiles, there isn't a choice available for MSYS.
精彩评论