在AOSP Android.mk文件中,如果命令失败,如何执行命令并使构建失败?

时间:2016-07-01 09:42:32

标签: android makefile android-source

在Android.mk文件中,我有以下行执行bash脚本:

$(info $(shell ($(LOCAL_PATH)/build.sh)))

但是,如果命令失败,则继续构建而不是退出。

如何在这种情况下使整个构建失败?

1 个答案:

答案 0 :(得分:4)

转储stdout,测试退出状态,并在失败时输出错误:

ifneq (0,$(shell >/dev/null command doesnotexist ; echo $$?))
  $(error "not good")
endif

这是什么失败的样子:

[user@host]$ make 
/bin/sh: doesnotexist: command not found
Makefile:6: *** not good.  Stop.
[user@host]$

如果您想查看stdout,那么您可以将其保存到变量并仅测试lastword

FOOBAR_OUTPUT := $(shell echo "I hope this works" ; command foobar ; echo $$?)
$(info $$(FOOBAR_OUTPUT) == $(FOOBAR_OUTPUT))
$(info $$(lastword $$(FOOBAR_OUTPUT)) == $(lastword $(FOOBAR_OUTPUT)))
ifneq (0,$(lastword $(FOOBAR_OUTPUT)))
  $(error not good)
endif

给出了

$ make
/bin/sh: foobar: command not found
$(FOOBAR_OUTPUT) == I hope this works 127
$(lastword $(FOOBAR_OUTPUT)) == 127
Makefile:12: *** not good.  Stop.