Qtcreator与C ++ 11线程

时间:2014-08-19 16:13:58

标签: c++ multithreading c++11 qt-creator

我为C ++ 11线程编写了hello world程序。我正在使用qtcreator ide与gcc 4.9.1,但我无法运行该程序。它编译得当。但是当我跑步时,它会发出以下警告

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

我的project.pro文件是

TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt

SOURCES += main.cpp
QMAKE_CXXFLAGS += -std=c++11
LIBS += -pthread

和main.cpp是

#include <iostream>
#include <thread>
void hello()
{
    std::cout<<"Hello Concurrent World\n";
}
int  main()
{
    std::thread t(hello);
    t.join();
}

我观察到的是它使用

g++ -c -pipe -std=c++11 -g -Wall -W -fPIE  -I/usr/lib/qt/mkspecs/linux-g++ -I. -o main.o main.cpp

创建main.o对象文件和

g++ -Wl,-O1,--sort-common,--as-needed,-z,relro -o project main.o   -pthread 

创建可执行文件。我从用于创建可执行文件的命令中删除了--as-needed。它工作正常。请让我知道正确的解决方案,以便我可以使用qtcreator C ++ 11线程。

1 个答案:

答案 0 :(得分:2)

这是libstdc ++中的一个错误。作为解决方法,如果使用C ++线程,请不要使用--as-needed

See here