Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Makefile 中使用如下“mycommand”的状态
EXIT=exit 1 mycommand || $(EXIT)
在编译时使用 Makefile 中的上述用法,我在 Windows 中遇到错误。
Application encountered an unexpected error. Stopping.
我是否需要更新任何环境变量或任何设置。
当您以退出代码 1 退出时,表示出现错误。你应该做exit 0的成功。
exit 0