Intel® Fortran Compiler 17.0 Developer Guide and Reference
Lets you specify an alternate preprocessor to use with Fortran.
Linux and macOS: | -fpp-name=name |
Windows: | /fpp-name:name |
name |
Is the name of the preprocessor executable. It can include a path. See the description below for more details. |
OFF |
No preprocessor is run on files before compilation. |
This option lets you specify an alternate preprocessor to use with Fortran.
The compiler invokes the user-specified Fortran preprocessor by spawning a command with the following signature:
alt_fpp [ [–D<define>]..] [[-I<include directory>]..] inputfile
where alt_fpp is the name of the Fortran preprocessor you want to use. Output from the preprocessor goes to STDOUT and will be captured for any further processing.
You can use option Qoption,fpp,… to pass options, other than the definitions (-D xxx) or include directories (-I xxx), to the preprocessor.
You can use option Qlocation, fpp,… to specify a directory for supporting tools.
None