1. ホーム
  2. c++

[解決済み] Linux上のGCCでstd::threadを使うための正しいリンクオプションは何ですか?

2023-03-24 05:52:17

質問

こんにちは、私は std::thread をG++で使おうとしています。以下は私のテストコードです。

#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.

私のテストコードに何か問題があるのでしょうか?

UPDATE: 私は以下のコマンドラインを使用して、私のコードをコンパイルして実行しています。

$ g++ -std=c++0x test.cpp
$ ./a.out

で、試しに

$ g++ -std=c++0x -lpthread test.cpp
$ ./a.out

は相変わらずです。

どのように解決するのですか?

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

これはリンクオプションなので、このコンパイラ・オプションは の後に である必要があります。

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