web-dev-qa-db-ja.com

G ++を使用したマルチスレッドコードのコンパイル

私はこれまでで最も簡単なコードを持っています:

#include <iostream>
#include <thread>

void worker()
{
    std::cout << "another thread";
}

int main()
{
    std::thread t(worker);
    std::cout << "main thread" << std::endl;
    t.join();
    return 0;
}

ただし、g++でコンパイルして実行することはできません。

詳細:

$ g++ --version
g++ (Ubuntu/Linaro 4.8.1-10ubuntu8) 4.8.1
Copyright (C) 2013 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++ main.cpp -o main.out -pthread -std=c++11

ランニング:

$ ./main.out 
terminate called after throwing an instance of 'std::system_error'
  what():  Enable multithreading to use std::thread: Operation not permitted
Aborted (core dumped)

そして今、私は立ち往生しています。インターネット上の関連するすべてのスレッドでは、-pthreadを追加することをお勧めします。

私は何を間違えていますか?

PS:これは真新しいubuntu 13.10インストールです。 g++パッケージのみがインストールされ、chromiumなどのマイナーなものがインストールされました

PPS:

$ ldd ./a.out 
linux-vdso.so.1 => (0x00007fff29fc1000) 
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fb85397d000) 
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fb853767000) 
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fb85339e000) 
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fb85309a000) 
/lib64/ld-linux-x86-64.so.2 (0x00007fb853c96000)

PPPS:clang++(v3.2)を使用すると、コンパイルして正常に実行されます

PPPPS:みんな、これは LinuxのGCCでstd :: threadを使用する正しいリンクオプションは何ですか? の複製ではありません

PPPPPS:

$ dpkg --get-selections | grep 'libc.*dev'
libc-dev-bin                    install
libc6-dev:AMD64                 install
libclang-common-dev             install
linux-libc-dev:AMD64                install
85
zerkms

答えは SO C++ chat の親切なメンバーによって提供されました。

この動作は、gccの bug が原因のようです。

そのバグディスカッションの最後のコメントで提供された回避策doesは機能し、問題を解決します。

-Wl,--no-as-needed
74
zerkms

-lpthreadを追加すると、同じ問題が修正されました。

 g++ -std=c++11 foo.cpp -lpthread -o foo
29
Petr Vepřek

私は少し高度なバージョン(4.8.1ではなく4.8.4)を使用しており、上記の3つの回答すべてをテストしました。実際には:

-pthread単独で動作します:

g ++ -std = c ++ 11 -o main -pthread main.cpp

-Wl,--no-as-needed単独動作しません

-lpthread単独動作しません

-Wl,--no-as-neededおよび-lpthreadtogether work:

g ++ -std = c ++ 11 -o main -Wl、-no-as-needed main.cpp -lpthread

私のバージョンは「g ++(Ubuntu 4.8.4-2ubuntu1〜14.04.1)4.8.4」です。

11
user31264

答えはすでにqtcreatorに対して行われました:

LIBS += -pthread
QMAKE_CXXFLAGS += -pthread
QMAKE_CXXFLAGS += -std=c++11

コンソールg ++の場合: here

g++ -c main.cpp -pthread -std=c++11         // generate target object file
g++ main.o -o main.out -pthread -std=c++11  // link to target binary
9
ecoretchi