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
I've found very often that builds fail when more than one make job is run in parallel with errors that seem to be related to trying to pull dependencies that are not built yet:
File "src/networks/donkey/donkeyNodesDat.ml", line 3, characters 5-18:
3 | open CommonOptions
^^^^^^^^^^^^^
Error: Unbound module CommonOptions
Other times I get an error about missing Printf2, but I was not able to reproduce it for this ticket.
Those errors disappear when telling make to use only one job (-j1).
I don't know enough about OCaml or Make to debug it, but it seems to miss something to enforce dependencies are built first.
The text was updated successfully, but these errors were encountered:
Yes, I get it, especially when there is a workaround. And I think the current system is a bit outdated too.
But I thought it was appropriate to report it and also that way people with the same issue could find the workaround.
Hi,
I've found very often that builds fail when more than one make job is run in parallel with errors that seem to be related to trying to pull dependencies that are not built yet:
Other times I get an error about missing
Printf2
, but I was not able to reproduce it for this ticket.Those errors disappear when telling make to use only one job (
-j1
).I don't know enough about OCaml or Make to debug it, but it seems to miss something to enforce dependencies are built first.
The text was updated successfully, but these errors were encountered: