web-dev-qa-db-ja.com

LinuxのGCCでstd :: threadを使用するための正しいリンクオプションは何ですか?

こんにちは、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

まだ同じ。

86
Earth Engine

Linuxでは、pthreadはstd::threadの実装に使用されるため、-pthreadコンパイラオプションを指定する必要があります。

これはリンクオプションであるため、このコンパイラオプションは[〜#〜] after [〜#〜]ソースファイルである必要があります。

$ g++ -std=c++0x test.cpp -pthread
98
hmjd

-std=c++0x-pthreadの使用に加えて、not-staticを使用する必要があります。

6
Bowie Owens

-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

4
tuvalu

スレッドを使用する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
3
Alexander

単一のコマンドでこの方法でコンパイルしてみてください:

g++ your_prog.cpp -o your_output_binary -lpthread -std=gnu++11

Gnu ++ 11の代わりにC++ 11を試すこともできます。これがうまくいくことを願っています。

1
Ravi Shankar