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?

link|improve this question

1  
You may be interested in: programmers.stackexchange.com/questions/103309/… – Doug T. Aug 29 '11 at 21:38
1  
Actually, I know that mingw32 does not support threading, I am looking for some modified version o something like that. – André Puel Aug 30 '11 at 13:42
feedback

closed as exact duplicate by osgx, In silico, ildjarn, bdonlan, Bo Persson Aug 30 '11 at 19:19

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.

2 Answers

I guess that std::thread came from boost, so you can always use boost for that, plus it comes with lots of useable bits

link|improve this answer
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.

link|improve this answer
Thank you, your answer was helpful. But mingw-w64 (seems to) also doesn't support threading yet. – André Puel Aug 30 '11 at 13:44
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.