在 Makefile 中使用 exit 命令导致编译错误

usage of exit command in Makefile causes compilation error

我在 Makefile

中使用 "mycommand" 的状态如下
EXIT=exit 1
mycommand || $(EXIT)

编译时在 Makefile 中使用上述用法,我在 windows 中遇到错误。

Application encountered an unexpected error.  Stopping.

我是否需要更新任何环境变量或任何设置。

当您以 1 表示错误的退出代码退出时。你应该 exit 0 成功。