如何在 gnumake 文件中强制出现错误
我想检测 makefile 中工具版本错误的情况,并强制 make 失败,并显示一条错误消息,指示该项目不是正确的版本。
谁能举一个这样做的例子吗?
我尝试了以下命令,但它不是正确的语法:
ifeq "$(shell svnversion --version | sed s/[^0-9\.]*://)" "1.4"
$error("Bad svnversion v1.4, please install v1.6")
endif
谢谢。
I want to detect a condition in my makefile where a tool is the wrong version and force the make to fail with an error message indicating the item is not the right version.
Can anyone give an example of doing this?
I tried the following but it is not the right syntax:
ifeq "$(shell svnversion --version | sed s/[^0-9\.]*://)" "1.4"
$error("Bad svnversion v1.4, please install v1.6")
endif
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从手册:
这将导致
make
出现致命错误:From the manual:
This will result
make
to a fatal error:虽然 $(error... 有效,但有时使用失败的规则更容易
然后您将 test_svn_version 作为顶级目标的先决条件。
While $(error... works, sometimes its easier to use a rule that fails
Then you make test_svn_version a prerequisite of your top level target.
条件句也需要注意。
The conditional needs some attention too.