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
Avoid competing header generation in parallel builds
When GNU make is given the rule:
a b: $(DEPS)
command
Then for each target that needs an update, command will run. If a
single run of command generates all the targets, then multiple runs are
at best wasteful and at worst counterproductive if concurrent runs can
corrupt each other's output.
0 commit comments