NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
-j2? -j4? (Score:2)
Re:-j2? -j4? (Score:2)
make -j2, G5: make -j3, G5: make -j4, G5: make -j10, G5: So it actually looks like -j2 is slightly faster. I did both -j2 and -j3 twice, with similar results: -j2 is faster by a good second or two. And I also did -j4 more times, with similar results (slower than -j2 and -j3 by at least several seconds).
One interesting note: Encode is always the last to finish. I wonder if making Encode begin to compile first would speed up the results somewhat. So with this run, I moved lib/auto/Encode/Encode.bundle to the beginning of dynamic_ext in the Makefile after Configure -des, and before make.
make -j2, G5, putting Encode first: make -j3, G5, putting Encode first: Hm. Never mind. In the last test there, Encode STILL finished last, BTW.
Reply to This
Parent