如何制作 g++计算编译错误

发布于 2024-12-03 17:05:59 字数 164 浏览 0 评论 0原文

我习惯使用 VC++,并且喜欢编译程序时的功能,它会告诉您有多少警告和错误,因此您一眼就能看出是否做出了积极的更改。

我现在在 Linux 中工作,所以必须使用 g++,并且厌倦了大量的错误,我必须滚动浏览并猜测有多少错误。

有没有办法让 g++ 像 VC++ 那样计算错误和警告?

I am use to using VC++ and like the feature when you compile the program it tells you how many warnings and errors there are so at a quick glance you can tell if you made a positive change.

I am now working in Linux so have to use g++ and am getting tired of having a massive stream of errors that I have to scroll through and guess at how many there are.

is there a way I can make g++ count the errors and warnings like VC++ does ?

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

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

发布评论

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

评论(1

世俗缘 2024-12-10 17:05:59
{ g++ 2>&1 | tee /proc/self/fd/3 | grep Error | wc -l } 3>&1
{ g++ 2>&1 | tee /proc/self/fd/3 | grep Error | wc -l } 3>&1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文