gcc 编译标志

发布于 2024-11-04 04:46:28 字数 116 浏览 0 评论 0原文

大家好 谁能告诉我 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叶落知秋 2024-11-11 04:46:28
-Wall

Gcc 将显示所有“GNU”警告

-ansi

Gcc 将显示 GNU 同意的所有 ANSI 诊断

-pedantic

Gcc 将显示更多 GNU 不一定同意的 ANSI 诊断。

-Wall

Gcc will display all the "GNU" warnings

-ansi

Gcc will display all the ANSI diagnostics that GNU agree with

-pedantic

Gcc will display more ANSI diagnostics which GNU doesn't necessarily agree with.

青春有你 2024-11-11 04:46:28

迂腐标志会导致编译器进行额外的错误检查,这使得它标记代码中可能会忽略的问题,并且还会关闭一些 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文