标签:err 解决 选项 erro 有关 efi ubunt standard stand
在编译时出现如下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.
编译的时候未开启 ISO C++ 2011 的支持选项,无法支持 ISO C++ 11 的有关语法
修改MakeFile,在其中的
g++ -o test test.cpp
加上一行 -std=c++11,变成
g++ -std=c++11 -o test test.cpp
即可编译成功
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
标签:err 解决 选项 erro 有关 efi ubunt standard stand
原文地址:https://www.cnblogs.com/vancasola/p/9849024.html