こんにちは、G ++で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
まだ同じ。
Linuxでは、pthreadはstd::thread
の実装に使用されるため、-pthread
コンパイラオプションを指定する必要があります。
これはリンクオプションであるため、このコンパイラオプションは[〜#〜] after [〜#〜]ソースファイルである必要があります。
$ g++ -std=c++0x test.cpp -pthread
-std=c++0x
と-pthread
の使用に加えて、not-static
を使用する必要があります。
-std=c++11 -static -pthread -Wl,--whole-archive -lpthread -Wl,--no-whole-archive
は-static
!!!と一緒に動作します
こちらをご覧ください: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52590#c4
スレッドを使用するC++ 11プログラムをコンパイルするための簡単なCMakeファイルを次に示します。
CMakeLists.txt:
cmake_minimum_required(VERSION 2.8)
list(APPEND CMAKE_CXX_FLAGS "-pthread -std=c++11 ${CMAKE_CXX_FLAGS}")
add_executable(main main.cpp)
それを構築する1つの方法は次のとおりです。
mkdir -p build
cd build
cmake .. && make
単一のコマンドでこの方法でコンパイルしてみてください:
g++ your_prog.cpp -o your_output_binary -lpthread -std=gnu++11
Gnu ++ 11の代わりにC++ 11を試すこともできます。これがうまくいくことを願っています。