-qfpp

Category

Input control

@PROCESS

None.

Purpose

Controls Fortran-specific preprocessing in the C preprocessor.

Syntax

Read syntax diagramSkip visual syntax diagram
                 .-nofpp------------------------------.   
>>- -WF--,-- -q--+-fpp--+---------------------------+-+--------><
                        |    .-:------------------. |     
                        |    |   .-linecont---.   | |     
                        |    V   +-comment----+   | |     
                        '-=------+-nocomment--+---+-'     
                                 '-nolinecont-'           

Defaults

Parameters

comment | nocomment
Instructs the C preprocessor (cpp) to recognize the ! character as a comment delimiter in macro expansion. When this suboption is enabled, the ! character and all characters following it on that line will be ignored by cpp when performing macro expansion.
linecont | nolinecont
Instructs cpp to recognize the & character as a line continuation character. When this suboption is enabled, cpp treats the & character and the C-style \ line continuation character equivalently.

Specifying -qfpp without any suboptions is equivalent to -qfpp=comment:linecont.

Usage

-qfpp is a C preprocessor option, and must therefore be specified using the -WF option.

Related information