我无法弄清楚我在这里做错了什么。这个非常短的程序:
#include <iostream>
#include <string>
#include <atomic>
#include <thread>
using namespace std;
int
main(int argc, char ** argv)
{
thread foo( []() {
cout << "Hello World" << endl;
return 0;
} );
foo.join();
return 0;
}
编译时完美运行gcc (4.7.2)
:
$ g++ -ggdb -std=c++11 -pthread -o clang_thread_test clang_thread_test.cpp
$ ./clang_thread_test
Hello World
但是,使用它编译时clang (3.2; x86_64-pc-linux-gnu; thread model: posix)
无法执行:
$ clang++ -ggdb -std=c++11 -pthread -o clang_thread_test clang_thread_test.cpp
$ ./clang_thread_test
pure virtual method called
terminate called without an active exception
Aborted
这有什么已知的原因吗?我发现的唯一东西与丢失-pthread switch
或未使用有关libc++
。据我所知,后者仅与苹果系统相关。