-3

这是来自 ubuntu 13.10 和 g++ 4.8 的错误,所以我关闭了这个问题。

within -Wl,--no-as-needed.

我的头有问题。我有一些代码

#include <iostream>
#include <thread>

int main(int argc, char* argv[])
{
    {
        std::thread t1([&]{ std::cout << "hello " << std::endl; });
        t1.join();        
    }
    return 0;
}

这是我的编译命令:

g++ -std=c++0x -lpthread test.cpp

ps:我已经为所有类型的订单更改了我的链接顺序。

它适用于 g++ 4.7 和 ubuntu 13.04,但它会在 g++ 4.8.1 和 ubuntu 12.10 上引发 system_error

直到我用-fprofile-arcs编译它运行良好。

就在下面:

g++ test.cpp -std=c++0x -fprofile-arcs -pthread
a.out
hello

g++ test.cpp -std=c++0x  -pthread
a.out
terminate called after throwing an instance of 'std::system_error'

what():启用多线程以使用 std::thread:不允许操作

4

1 回答 1

0

只需启动一个 Ubuntu 12.10 虚拟机

osmith@ubuntu1210 ~/src $ g++-4.8 --version
g++ (Ubuntu 4.8.1-2ubuntu1~12.10) 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.

并用这个命令行编译:

osmith@ubuntu1210 ~/src $ g++-4.8 -std=c++11 -o test.exe test.cpp -pthread -lpthread
osmith@ubuntu1210 ~/src $ ./test.exe
hello 
于 2013-10-30T07:12:25.993 回答