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

时间:2014-01-15 05:27:57

标签: c++ linux multithreading c++11 g++

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

#include <thread>
#include <iostream>

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

我试图使用原始问题中提供的解决方案以及this duplicate的已接受答案。但是,尽管我尝试了列出的所有组合,特别是尝试了

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使用不同的命令或命令集吗?

1 个答案:

答案 0 :(得分:10)

已回答here

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