pro tip: do NOT build libopenmpt with make -j
-
pro tip: do NOT build libopenmpt with
make -j
it turns out for some reason this results in it building everything at the same time and using >32GB of RAM
-
pro tip: do NOT build libopenmpt with
make -j
it turns out for some reason this results in it building everything at the same time and using >32GB of RAM
i have 16 threads and i can almost always safely handle a
make -j
... except when makefiles do this -
i have 16 threads and i can almost always safely handle a
make -j
... except when makefiles do this@niko@gts.niko.lgbt make is a mad dog of a tool more than happy to snap at the hand that feeds it. :btr_ryo_lurk:
For any serious compilation I reflexively specify a job integer (e.g., make -j8 or $(nproc)) because I don’t trust make to not screw me. Make cannot be trusted with freedom.