37

我在我的系统上创建并执行了一个简单的线程。当我执行此程序时,我收到错误消息:启用多线程以使用 std::thread:不允许操作

关于我的系统的一些细节:

  • linux ubuntu 13.10
  • g++ 4.8.1

我编译包括库在内的源代码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;
}
4

1 回答 1

36

您似乎正在尝试使用 C++11 线程。如果是真的,那么

  1. 正确#include <thread>and #include <iostream>,即不要"在这些行中使用并#在它们前面添加。
  2. 编译g++ -std=c++11 q.cpp -lpthread(依赖顺序对较新的 g++ 很重要)

提示:当您在静态链接库中使用线程并在可执行文件中使用此库时,您必须将标志添加-pthread到可执行文件的链接命令中。例子:

g++ Obj1.o Obj2.o MyStaticLib.a -o MyExecutable -pthread
于 2013-10-27T14:19:06.100 回答