-pragma

Defines a pragma for the compiler.

Syntax
  -pragma "name [
  setting]"

  

The arguments are:

name

Name of the pragma.

setting

Arguments to give to the pragma

Remarks

For example, this command-line option

  -pragma "c99 on"

  

is equivalent to inserting this directive in source code

  #pragma c99 on