在linux下的GCC中使用std :: thread的正确链接选项是什么? 嗨,我正在尝试使用std::threadG ++。这是我的测试代码 #include <thread>#include <iostream>int main(int, char **){ std::thread tt([](){ std::cout<<"Thread!"<<std::endl; }); tt.join();} 它编译,但当我尝试运行它时,结果是: ...