首页 > 代码库 > g++编译C++11/C++0x遇到的问题
g++编译C++11/C++0x遇到的问题
在看《Cplusplus Concurrency In Action Practical Multithreading》时遇到第一个例子:
#include<iostream> #include<thread> void hello() { std::cout<<"hello concurrent world\n"; } int main() { std::thread t(hello); t.join(); }
我安装了g++-4.8版本编译器,支持C++11,使用命令行g++-4.8 -std=c++11 -lpthread *.cpp编译后,得到的可执行文件在运行时遇到错误:
terminate called after throwing an instance of ‘std::system_error‘
what(): Enable multithreading to use std::thread: Operation not permittedAborted (core dumped)
在查了好久才发现问题,是编译器的问题,编译时要加上选项
-Wl,--no-as-needed
参考这里:http://stackoverflow.com/questions/19463602/compiling-multithread-code-with-g在
g++编译C++11/C++0x遇到的问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。