Penguin
Diff: KernelDevelopment
EditPageHistoryDiffInfoLikePages

Differences between version 6 and previous revision of KernelDevelopment.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 6 Last edited on Tuesday, September 6, 2005 2:36:13 pm by IanMcDonald Revert
Older page: version 4 Last edited on Thursday, September 1, 2005 11:29:27 am by IanMcDonald Revert
@@ -10,6 +10,14 @@
 http://www-128.ibm.com/developerworks/linux/edu/l-dw-linux-kernelhack1-i.html %%% 
 http://www-128.ibm.com/developerworks/linux/edu/l-dw-linux-kernelhack2-i.html %%% 
  
 A useful cross reference of the LinuxKernel source code can be found at http://lxr.linux.no/ 
+  
+If you are compiling on a slow machine and you have access to other machines I would recommend using distcc (which can be installed by your [Package] manager).  
+  
+When I make the [Kernel] with three (slow) machines I do the following: %%%  
+=make -j6 CC='distcc'= %%%  
+The -j6 is to tell make to use 6 parallel tasks (recommended is 2 per CPU).  
+NB - this stopped part way through and when I did a normal make it started all over from the beginning so don't trust this syntax quite yet - worked on other programs for me though -- IanMcDonald  
+  
 ---- 
 CategoryKernel