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
Building with make -j as recommended in the docs is generally inadvisable. It steals all the threads it can and will cause crashes on some systems. It would be better to run make -j $(($(nproc)/2)) for linux or $(($(sysctl -n hw.ncpu)/2)) for mac if you want to speed up your build time by multithreading.
The text was updated successfully, but these errors were encountered:
Building with
make -j
as recommended in the docs is generally inadvisable. It steals all the threads it can and will cause crashes on some systems. It would be better to runmake -j $(($(nproc)/2))
for linux or$(($(sysctl -n hw.ncpu)/2))
for mac if you want to speed up your build time by multithreading.The text was updated successfully, but these errors were encountered: