我在我的系统上创建并执行了一个简单的线程。当我执行这个程序时,我有错误消息:启用多线程以使用std :: thread:不允许操作
关于我的系统的一些细节:
我编译了包含库pthread
源代码:
#include <iostream>
#include <thread>
using namespace std;
void func(void) {
cout << "test thread" << endl;
}
int main() {
cout << "start" << endl;
thread t1 (func);
t1.join();
cout << "end" << endl;
return 0;
}
答案 0 :(得分:30)
您似乎正在尝试使用C ++ 11线程。如果是,那么
#include <thread>
和#include <iostream>
,即请勿在这些行中使用"
,并在其前面添加#
。g++ -std=c++11 q.cpp -lpthread
进行编译(依赖顺序对较新的g ++很重要)提示:当您在静态链接库中使用线程并在可执行文件中使用此库时,您必须将标志-pthread
添加到可执行文件的link命令中。例如:
g++ Obj1.o Obj2.o MyStaticLib.a -o MyExecutable -pthread