make fails to continue if interrupted. #790
Labels
No labels
UX
active development
backlog
blocker
bootstrap
bounty
bug
dependencies
discussion
documentation
duplicate
enhancement
flaky test
help wanted
invalid
javascript
question
release
tendentious
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
mighty-gerbils/gerbil#790
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If you have a build that fails, or is interrupted, it can't be continued with
makeas it just exits.the exit behavior of the makefile comes because the build directory now exists, so you need to make clean and start over.
Not ideal, but not sure how to make this interrupt restartable.
Maybe @drewc has some ideas.
Is it not "just" a matter of using mkdir -p and otherwise making build steps idempotent? Which step fails?
we could track which phased finished by touching a file in the build dir, and the makefile needs to do it in stages triggered by the stage file.
that's the easiest way to restart, but the granularity is coarse.
So the
build.shscript has been greatly enhanced to do staged building and debug.This is no longer a burning issue, just a UX mishap.