How could I retrieve the intermediate files generated by the preprocessor, using GNU compiler?
I typically have Fortran sources that I compile with -x f95-cpp-input
option for preprocessing, and I would like to retrieve the result. I tested different things, including using the -save-temps
option (but the output is not really human-readable) and the -fdump-fortran-original
option (that I found already too strongly modified by the compiler to be useful). I had a look in the GNU documentation, but could not find anything more useful.
Any hint would be appreciated!