如何捕获并处理 Make 中的错误?

发布于 2024-10-12 06:07:31 字数 154 浏览 0 评论 0原文

我正在使用 GNU Make 3.80。

在我的 Makefile_1 中,我正在调用 Makefile_2。在某些情况下,Makefile_2“抛出”错误。

有没有办法让我“捕获”和“处理”(在 Makefile_1 内)Makefile_2 可能抛出的错误?

I'm using GNU Make 3.80.

Within my Makefile_1, I am invoking Makefile_2. In certain circumstances, Makefile_2 "throws" an error.

Is there a way for me to "catch" and "handle" (within Makefile_1) the error that Makefile_2 might possibly throw?

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

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

发布评论

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

评论(1

伤痕我心 2024-10-19 06:07:31

您拥有所需的所有 shell 功能:

target1:
    ${MAKE} -f Makefile_2 target2; \
    case "$?" in \
    ... \
    esac;

You have all the shell power you need:

target1:
    ${MAKE} -f Makefile_2 target2; \
    case "$?" in \
    ... \
    esac;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文