从官方网站 下的例子编译后运行不了

从http://en.cppreference.com/w/cpp/thread/thread/join
下的example,另存为th.cpp。
wei@linux-vvbk:~/bin> g++ -std=c++11 th.cpp
wei@linux-vvbk:~/bin> ./a.out
starting first helper…
terminate called after throwing an instance of ‘std::system_error’
what(): Enable multithreading to use std::thread: Operation not permitted
已放弃 (核心已转储)

g++  th.cpp -o a.out -pthread -std=c++11

忘记 -pthread了太丢人了。