用G ++编译多线程代码


89

我有史以来最简单的代码:

#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

这是libpthread-2.17.so在同一目录中的符号链接。
zerkms,2013年

是的,那是正确的链接。这是我的目录lrwxrwxrwx。1 root root 9 Sep 12
20:52

@Jason Enochs:它将对我有用-我同意,如果我不使用越野车gcc版本
zerkms 2013年

是的,您所有的库都比我的库新:gcc版本4.7.2 20121109(Red Hat 4.7.2-8)(GCC)
Jason Enochs 2013年

@Jason Enochs:呵呵。对于我自己,我已经对“这是一个错误”的答案感到满意,并且很可能明天将尝试在较旧的ubuntu上运行它,只是要完全确定
zerkms

Answers:


75

答案是由SO C ++聊天的好心成员提供的。

看来此行为是由gcc中的错误引起的。

该错误讨论的最后评论中提供的解决方法确实可以解决该问题:

-Wl,--no-as-needed

8
没有SO和像您这样的人我该怎么办?你救了我一大堆头发。谢谢:)这是(至少对我来说)如此晦涩
scorpiodawg 2014年

@scorpiodawg:您的评论使我成为晚上,谢谢:-)
zerkms 2014年

1
-pthread -lpthread -Wl,--no-as-needed为了完成这项工作,我必须添加所有标志。
顺磁牛角包

33

添加-lpthread为我解决了相同的问题:

 g++ -std=c++11 foo.cpp -lpthread -o foo

1
没错,这是答案,也是完全合理的。“ -Wl,-不需要”听起来很奇怪,对我也不起作用。
圣徒

3
您肯定需要-lpthread。您可能需要-pthread -Wl,--no-as-needed,具体取决于编译器版本。gcc-4.8.2需要它。
cdunn2001 '16

12

我有更高级的版本(4.8.4而不是4.8.1),并且我测试了以上所有三个答案。事实上:

-pthread 单独工作:

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

-Wl,--no-as-needed独自一人行不通

-lpthread独自一人行不通

-Wl,--no-as-needed-lpthread 一起工作:

g ++ -std = c ++ 11 -o main -Wl,-无需按需main.cpp -lpthread

我的版本是“ g ++(Ubuntu 4.8.4-2ubuntu1〜14.04.1)4.8.4”。


好了,为不同版本提供了解决方案,我可以确保在我检查选中的答案后,它就可以正常工作。无论如何,感谢您的实际信息。
zerkms's

9

已经为qtcreator做出了答案:

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

对于控制台g ++:在这里

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

1
谢谢,您的回答是唯一清楚表明-pthread必须传递给编译器和链接器的回答。
牛仔布
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.