59

所以我写了一个程序来测试 64 位 kubuntu linux,版本 13.04 上的线程。实际上,我从正在编写测试程序的其他人那里窃取了代码。

#include <cstdlib>
#include <iostream>
#include <thread>

void task1(const std::string msg)
{
    std::cout << "task1 says: " << msg << std::endl;
}

int main(int argc, char **argv)
{
    std::thread t1(task1, "Hello");
    t1.join();

    return EXIT_SUCCESS;
}

我编译使用:

g++ -pthread -std=c++11 -c main.cpp
g++ main.o -o main.out

然后跑:

./main.out

顺便说一句,当我输入“ls -l”时,main.out 像所有可执行文件一样以绿色文本显示,但名称末尾还有一个星号。为什么是这样?

回到手头的问题:我跑main.out的时候,出现了一个错误,说:

terminate called after throwing an instance of 'std::system_error'
  what():  Operation not permitted
Aborted (core dumped)

有人对如何解决这个问题有任何想法吗?

4

1 回答 1

109

您没有正确链接 pthread,请尝试以下命令(注意:顺序很重要)

g++  main.cpp -o main.out -pthread -std=c++11

或者

用两个命令来做

g++ -c main.cpp -pthread -std=c++11         // generate target object file
g++ main.o -o main.out -pthread -std=c++11  // link to target binary
于 2013-06-24T11:10:53.850 回答