Я скомпилировал и установил gcc4.4, используя macports.
Когда я пытаюсь скомпилировать, используя -> g ++ -g -Wall -ansi -pthread -std = c ++ 0x main.cpp ...:
#include <thread>
...
std::thread t(handle);
t.join();
....
Компилятор возвращает:
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
Но std::cout <<...
компилируется нормально ..
Кто-нибудь может мне помочь?