Make make faster
Did you ever have to compile a large project with make
? It can be realy slow. Use the -j
option to allow make
to run multiple jobs simultaneously:
As a rule of thumb, choose -j
to be the number of CPU cores.
Did you ever have to compile a large project with make
? It can be realy slow. Use the -j
option to allow make
to run multiple jobs simultaneously:
As a rule of thumb, choose -j
to be the number of CPU cores.