gcc 编译标志
大家好 谁能告诉我 gcc 中的 -pedantic 标志是什么? 就像我们在命令行中使用 gcc -pedantic filename.c 一样。 我不知道为什么我们使用 -pedantic 标志? 请举例说明。
hi everybody out there
can any on\e tell me what is -pedantic flag in gcc ?
like we use at command line gcc -pedantic filename.c.
i don't know why we use -pedantic flag ?
please explain with example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Gcc 将显示所有“GNU”警告
Gcc 将显示 GNU 同意的所有 ANSI 诊断
Gcc 将显示更多 GNU 不一定同意的 ANSI 诊断。
Gcc will display all the "GNU" warnings
Gcc will display all the ANSI diagnostics that GNU agree with
Gcc will display more ANSI diagnostics which GNU doesn't necessarily agree with.
迂腐标志会导致编译器进行额外的错误检查,这使得它标记代码中可能会忽略的问题,并且还会关闭一些 GCC 扩展。使用它是一件好事。
The pedantic flag causes the compiler to do extra error checking, which makes it flag problems in your code that it might otherwise ignore, and it also turns off some GCC extensions. Using it is A Good Thing.