UbuntuのQt Creatorでスレッドを機能させようとしています。私は
QMAKE_CXXFLAGS += -std=c++11 -pthread -lpthread
CXXFLAGS += -std=c++11 -pthread -lpthread
しかし、それでも機能せず、書き込みます
terminate called after throwing an instance of ‘std::system_error’
what(): Operation not permitted
コンパイルしようとするファイルはこれです
#include <iostream>
#include <thread>
using namespace std;
void fun(){
}
int main()
{
thread th(&fun);
cout << "Hello World!" << endl;
return 0;
}