概述
当使用GCC编译时如果代码中使用了C++11的标准,如果只用gcc -o就会提示错误。
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
#error This file requires compiler and library support
^
当使用GCC编译时,如果需要使用C++11的标准去编译。就需要在编译时指令中加入-std=c++11
g++ -std=c++11 -o main main.cpp
最后
以上就是虚心猎豹为你收集整理的GCC编译时使用C++11standard的全部内容,希望文章能够帮你解决GCC编译时使用C++11standard所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复