博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
阅读量:5050 次
发布时间:2019-06-12

本文共 391 字,大约阅读时间需要 1 分钟。

问题

在编译时出现如下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

即可编译成功

转载于:https://www.cnblogs.com/vancasola/p/9849024.html

你可能感兴趣的文章
svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted
查看>>
Webpack4 学习笔记四 暴露全局变量、externals
查看>>
CF1005F Berland and the Shortest Paths
查看>>
vscode点击ctrl键报错Request textDocument/definition failed.
查看>>
图王:刺客——运筹帷幄善于在变化中找到方向的站长
查看>>
Safari无痕浏览影响localStorage
查看>>
POJ 3368 Frequent values (RMQ,4级)
查看>>
java 练习题3
查看>>
对象生命周期的简单理解
查看>>
c# 日志记录 行号
查看>>
CSS3---12.过渡动画
查看>>
[NOI1995]石子合并 四边形不等式优化
查看>>
vim 实现begin end 配对 使用matchit插件
查看>>
linux挂载磁盘以及扩容主分区
查看>>
[转]Python模块学习:threading 多线程控制和处理
查看>>
PHP链接sqlserver出现中文乱码
查看>>
[计算机]Alan Perlis人物简介
查看>>
Android-----第三方 ImageLoader 的简单配置和使用
查看>>
零基础入门Python3-详解分支
查看>>
js数组去重
查看>>