ValveSoftware / vogl

OpenGL capture / playback debugger.
MIT License
1.42k stars 126 forks source link

'Make -j 10' is "ugly" #213

Closed Chocanto closed 8 years ago

Chocanto commented 8 years ago

In the readme at the section Linux (https://github.com/ValveSoftware/vogl#linux) you can see in the list of command this one :

make -j 10

But the make manual, about -j, tell (https://www.gnu.org/software/make/manual/html_node/Parallel.html) :

If there is nothing looking like an integer after the ‘-j’ option, there is no limit on the number of job slots.

So why not just execute make -j ?

Plagman commented 8 years ago

Because that will most likely cause your machine to swap unlike -j10, depending on the size of the project.