我使用 macports 编译并安装了 gcc4.4。
当我尝试使用 -> 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 <<...
编译很好..
谁能帮我?