我已经按照SO上的其他答案的建议,但Eclipse仍然不会构建我的线程应用程序:
#include <thread>
#include <iostream>
void func() {
std::cout << "Hello thread!" << std::endl;
}
int main() {
std::thread t(func);
t.join();
return 0;
}
以下是Eclipse正在使用的命令(强调我的):
g ++ -O0 -g3 -Wall -c -fmessage-length = 0 -pthread -std = c ++ 11 -MMD -MP -MF“main.d”-MT“main.d”-o“main.o”“../ main.cpp”
g ++ -pthread -std = c ++ 11 -o“sandbox”./ main.o
如您所见,我添加了-pthread和-std = c ++ 11。 Eclipse仍然在运行时抱怨:
在抛出'std :: system_error'实例后终止调用 what():启用多线程以使用std :: thread:不操作 允许
此外,手动构建失败:
$ g++ main.cpp -o main.out -pthread -std=c++11
$ ./main.out
terminate called after throwing an instance of 'std::system_error'
what(): Enable multithreading to use std::thread: Operation not permitted
Aborted
我还能做什么?
答案 0 :(得分:3)
答案是将以下内容添加到两个位置:
-Wl,--no-as-needed
应该添加到:
1)项目属性 - &gt; C / C ++ Build - &gt;设置 - &gt;工具设置 - &gt; GCC C ++编译器 - &gt;其他 - &gt;其他标志
示例:-c -fmessage-length=0 -pthread -std=c++11 -Wl,--no-as-needed
2)项目属性 - &gt; C / C ++ Build - &gt;设置 - &gt;工具设置 - &gt; GCC C ++链接器 - &gt;其他 - &gt;链接器标志
示例:-pthread -std=c++11 -Wl,--no-as-needed