本文介绍了如何使用GNU g ++只编译标准C ++?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在GNU g ++编译器中有一些扩展,例如VLA(可变长度数组),即使这些特性不是C ++标准。
There are some extensions in the GNU g++ compilers such as VLA (variable length arrays), even though those features are not C++ standards.
所以,如果我需要编译一个程序只使用C ++标准结构,并避免那些额外的扩展,我可以用GNU g ++吗?
So if I need to compile a program using only C++ standard constructs and avoiding those extra extensions, can I do it with GNU g++?
g ++ test.cpp -std = onlyStandards
?
推荐答案
传递 -pedantic-errors
标志。请务必使用 -std =
设置标准,例如 -std = c ++ 14
。这也适用于俚语。
Pass the -pedantic-errors
flag. Be sure to set a standard with -std=
, such as -std=c++14
. This works in clang as well.
这篇关于如何使用GNU g ++只编译标准C ++?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!