If I build with `make --jobs="$(nproc)"` the system will deplete all its 16GB of RAM and all its SWAP, till it freezes. If I use `make --jobs=$(("$(nproc)" / 2))` it will still use 12GiB of RAM. I have to resort to use `make --jobs=$(("$(nproc)" / 4))`.