I have core i5 with 8gb RAM. I have VMware workstation 10.0.1 installed on my machine. I have fedora 20 Desktop Edition installed on VMware as guest OS.
I am working on Linux kernel source code v 3.14.1. I am developing an I/O scheduler for Linux kernel. After any modifications in code every time it takes around 1 hour and 30 minutes for compiling and installing the whole kernel code to see the changes.
Compilation and Installation commands:
make menuconfig
,
make
,
make modules
,
make modules_install
,
make install
So my question is it possible to reduce 1 hour and 30 minutes time into only 10 to 15 minutes?
Do not do
make menuconfig
for every change you make to the sources, because it will trigger a full compilation of everything, no matter how trivial your change is. This is only needed when the configuration option of the kernel changes, and that should sheldom happen during your development.Just do:
or if you prefer the parallel compilation:
or whatever number of concurrent tasks you fancy.
Then the
make install
, etc. may be needed for deploying the recently built binaries, of course.Another trick is to configure the kernel to the minimum needed for your tests. I've found that for many tasks a UML compilation (User Mode Linux) is the fastest. You may also find useful
make localmodconfig
instead ofmake menuconfig
to start with.You do not need to run
make menuconfig
again every time you make a change — it is only needed once to create the kernel.config
file. (Or possibly again if you editKconfig
files to add or modify configuration options, but this certainly shouldn't be happening often.)So long as your
.config
is left alone, runningmake
should only recompile files that you changed. There are a few files that must be compiled every time, but the vast majority are not.make
parallel build with-j
optioni.e. for eg instead of running:
run:
where
N
is the no of cores on your machine (cat /proc/cpuinfo
lists the no of cores). For eg, fori386
target and host machine with4 cores
(output ofcat /proc/cpuinfo
):Similarly you can run the other make targets (
modules
,modules_install
,install
) with-jN
flag.Note:
make
does a check of the files modified and compiles only those files which have been modified so only the initial build should take time, subsequent builds will be faster.Perhaps in addition to the previous suggestions, while using ccache, you might want to unset
CONFIG_GCC_PLUGINS
(if it was set) otherwise you may get a lot of cache misses, as seen in this example.If you have suffitient RAM and you wont be using your machine while the kernel is being built u can spawn a large number of concurrent jobs. But make sure your RAM is sufficient otherwise your system will hang and crash.
make -j
will make use of all available CPUs.