Possible Duplicate:
How to enable experimental C++0x concurrency features in MinGW?
my version of mingw32 (gcc version is 4.5.2) does not come with the class std::thread.
Is there a version of mingw32 which supports std::thread?
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
I guess that std::thread came from boost, so you can always use boost for that, plus it comes with lots of useable bits | |||
|
feedback
|
|
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. | |||
feedback
|