I would like to understand how the preprocessor inlines includes into the code in Fortran. With C, it\'s pretty simple:
Test.c:
#include
Fortran has its own include directive which must not be confused with the preprocessor directive #include
. As far as I understand it, the included code is not embedded into the master file, but the compiler instead continues to compile from the include file, and returns to the master file at the end of that file. From here:
The INCLUDE statement directs the compiler to stop reading statements from the current file and read statements in an included file or text module.
Also, include
d files are not preprocessed further, while #include
d ones are.
Note, that there is also a naming convention that enables the preprocessor only on files with capital suffixes *.F
and *.F90
. If you want to preprocess *.f
or *.f90
files, you need to specify that in a compile option, e.g. -cpp
for gfortran
, and -fpp
for ifort
.