I am creating ubuntu-8.04 with gcc 3.4 and I need to generate .i files which are the output of the gcc preprocessor. I tried adding the -save-temps flag, but it only generates .i files for the top-level directory, i.e. the source, and does not seem to be passed recursively to child directories. I also tried the -E flag, which should output pre-processed files and stop compilation, but this also did not create the files.
I am specifically looking to generate .i files for source in net / core.
Any help is appreciated. Thanks!!
compilation linux-kernel
Sara
source share