こんにちは、std::thread
をG ++で使用しようとしています。ここに私のテストコードがlinuxの下でGCCのstd :: threadを使うための正しいリンクオプションは何ですか?
#include <thread>
#include <iostream>
int main(int, char **){
std::thread tt([](){ std::cout<<"Thread!"<<std::endl; });
tt.join();
}
ではコンパイルが、私はそれを実行しようとすると、結果は次のとおりです。
terminate called after throwing an instance of 'std::system_error'
what(): Operation not permitted
Aborted
私のコンパイラのバージョン:
私のテストと間違っている何$ g++ --version
g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Copyright (C) 2011 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++ -std=c++0x test.cpp
$ ./a.out
と私は
$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out
まだ同じことを試してみました。
UPDATE:次のコンパイルコマンドが機能します。私は、Linux pthreadの上だと思う
$ g++ -std=c++0x test.cpp -lpthread
$ ./a.out
Thread!
あなたはこれを構築するために使用されるコンパイラのコマンド/オプションを投稿することができます。 – hmjd
確かに、私はポスト –
を更新するでしょう@hmjdが言ったこと - あなたは '-lpthread'でビルドしましたか? – ildjarn