小编典典

g ++ 4.8.1 C ++线程,std :: system_error-不允许操作吗?

linux

这不是一个重复的问题,因为提出的解决方案不适用于我的编译器。我正在尝试从该问题编译并运行以下示例。

#include <thread>
#include <iostream>

int main(int, char **){
    std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
    tt.join();
}

我已尝试使用该原始问题以及对此重复项目的公认答案中提供的解决方案。但是,尽管我尝试了所有列出的组合,特别是尝试了

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

当我运行生成的可执行文件时,我仍然得到

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

这是的输出g++ --version

g++ (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

我需要使用其他顺序或命令集g++ 4.8.1吗?


阅读 412

收藏
2020-06-07

共1个答案

小编典典

这是在这里回答

g++ -Wl,--no-as-needed -std=c++11 -pthread main.cpp -o main.out
2020-06-07