这是来自 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:不允许操作