Andre Poenitz wrote: > On Fri, Jun 06, 2008 at 11:12:40PM +0200, Alfredo Braunstein wrote: >> Jean-Marc Lasgouttes wrote: >> >> > "Bennett Helm" <[EMAIL PROTECTED]> >> > writes: >> > >> >> Yes, that indeed works. I'm attaching the corrected script (now >> >> renamed to note that it's explicitly for Mac). >> > >> > Note that compiling with "make -j3" is much faster on double core >> > machines. >> >> faster than -j2 or was it a typo? > > Typically -j3 is a better choice than -j2 on dual core machines, as not > everything is processor-bound.
Sure, maybe the reason. Note that multiple concurrent processes intensively accessing one resource (say memory or disk) may give worse performance than sequential runs (be it because of memory page switches, suboptimal cache usages etc). Seemingly this is not the case for compilation (or just lyx compilation)... A/