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
The Makefile is not parallel-build safe when using the default target. In other words, make -j8 results in multiple processes stepping on each others' toes.
The text was updated successfully, but these errors were encountered:
the situation is that make -j works, and is a nice speedup when building the current version, but the chain of the bootstrapping process is not thread safe (i.e. the first invocation of the build after a make distclean).
besides making the bootstrap threadsafe, we could disable parallelism alltogether, but then building during normal development would be slower.
Sure. Making the bootstrap safe is the "right" solution, but also the trickiest, of course.
For now, maybe have the bootstrap do a $(MAKE) -j1 actual-bootstrap-target, to keep it safe?
Or put it in another Makefile with .NOPARALLEL: ?
The
Makefile
is not parallel-build safe when using the default target. In other words,make -j8
results in multiple processes stepping on each others' toes.The text was updated successfully, but these errors were encountered: