I accidentally left off the -j [jobs] when compiling the Qt4 git://gitorious.org/qt/qt.git repository from mingw32-make as per the Building Qt4 documentation. Will this make any other difference beside the amount of time it takes to compile?
My understanding of the command.
-j
with no argument lets make decide. From your link, from the section for ‘-j [jobs]
’:
With no argument, make runs as many recipes simultaneously as possible.
If the makefile is correctly written there should be no difference between running it with or without -j
, though (as you note) running one job at a time could be slower.