c++0x, std::thread error (thread not member of std)
- by luis
Hello
I compiled & installed gcc4.4 using macports.
When I try to compile using - g++ -g -Wall -ansi -pthread -std=c++0x main.cpp...:
#include
...
std::thread t(handle);
t.join();
....
The compiler returns:
cserver.cpp: In member function 'int CServer::run()':
cserver.cpp:48: error: 'thread' is not a member of 'std'
cserver.cpp:48: error: expected ';' before 't'
cserver.cpp:49: error: 't' was not declared in this scope
But std::cout <<... compiles fine..
Can anyone help me?
Thanks!
Luis