How to stop building project if pre-build step fails?
I want to stop building project as soon as pre-build step fails.
To test I added command `false` to pre-build step.
Output is `make[1]: [makefile:211: pre-build] Error 1 (ignored)` but compilation continues. I want to stop process after that.
解決済! 解決策の投稿を見る。
According to the official Eclipse documentation, the main build gets executed regardless the success/failure of the pre-build step - see [1]. I think you might need to invoke your scripts through rules from the actual makefile.
Regards,
MCUXpresso IDE Support
According to the official Eclipse documentation, the main build gets executed regardless the success/failure of the pre-build step - see [1]. I think you might need to invoke your scripts through rules from the actual makefile.
Regards,
MCUXpresso IDE Support