GNU make 仅显示错误

发布于 2024-11-07 14:45:21 字数 145 浏览 0 评论 0原文

是否可以将 GNU make 配置为仅显示错误。 make --no-print-directory 抑制所有进入/离开消息。同样,我不想看到“make[4]:安装无需执行任何操作。”。只是构建错误。

谢谢。

Is it possible to configure GNU make to only show error. make --no-print-directory suppresses all the Entering/Leaving messages. similarly I don't want to see "make[4]: Nothing to be done for install.". Just the build error.

thanks.

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

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

发布评论

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

评论(1

胡渣熟男 2024-11-14 14:45:21

make -s 不会打印任何命令(就好像每个命令都以 @ 为前缀)。如果命令本身正在打印输出,请尝试重定向标准输出但保留标准错误。

make -s >/dev/null

然而,我的建议是让所有输出通过,因为它对于弄清楚正在发生的事情非常有用。使用 colormake 等工具使其更具可读性。

make -s won't print any of the commands (as if every command was prefixed by @). If the commands themselves are printing output, try redirecting standard output away but keeping standard error.

make -s >/dev/null

However my recommendation would be to let all the output through, because it can be very useful to figure out what's going on. Use a tool such as colormake to make it more readable.

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