Is there any efficient way (maybe by abusing the gcc preprocessor?) to get a set of stripped kernel sources where all code not needed according to .config is left out?
|
feedback
|
|
Compile everything and use atime to find out which files were not used. It might not be very accurate but it's probably worth a try. | |||||||
feedback
|
|
Well got some steps into a solution. First, one can obtain the used compiler commands by
For now, I select only one gcc command line for further steps. For example the build of kernel/kmod.c, it looks like:
I now remove the option Now includes are still included and thus expanded on the preprocessor output. Thus I pipe the input file through grep removing them: The only thing left is to filter out the preprocessor comments and the remaining The whole pipe looks like:
and the result is a filtered version of kernel/kmod.c containing the code that is actually build into kmod.o. Questions remain: How to do that for the whole source tree? Are there files that are actually build but never used and stripped at linking? | |||
|
feedback
|