仅当没有错误时 gcc 才会发出警告

发布于 2024-12-08 21:35:12 字数 57 浏览 0 评论 0原文

是否可以告诉 gcc 显示所有警告(如 -Wall),但前提是没有错误?如果有错误 - 仅显示错误。

Is it possible to tell gcc to show all warnings (like with -Wall) but only if there are no errors? If there are errors - show only them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

看春风乍起 2024-12-15 21:35:12

我不这么认为。这将要求 GCC“缓存”所有警告,直到完成编译单元的处理,这听起来不太有用。

有像 colorgcc 这样的实用程序可以使 GCC 的输出在彩色终端中更加明显 - 也许你会发现有那么有用吗?

您可以使用-Werror将所有警告变成错误,从而消除问题,但这不是您想要的:-)

I don't think so. That would require GCC to "cache" all the warnings until it's finished processing the compilation unit, which doesn't sound very useful.

There are utilities like colorgcc that make the output of GCC a bit more obvious in color terminals - maybe you would find that useful?

You could turn all the warnings into errors with -Werror, thus removing the problem, but that's not what you're after :-)

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