You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my current branch I topologically sort the targets in the dependency graph and go through it target by target. So we could abort as soon as a target fails.
It could suffice to simply not call the parent's compile function (and to not set compiled = True, when the failure of a build command is detected, as this would automatically keep any parent from being compiled.
With PR #23, merged with a7bbc88, it has been implemented that sources are built as far as possible and at link-time, the build is stopped when a target is encountered, containing sources that were not able to build.
Currently the program may continue to run for quite a while, trying to build parent targets of the failed target.
The text was updated successfully, but these errors were encountered: