mkckr0
mkckr0

Reputation: 182

Full name and Meanings of prefix "g", "W", "f", "m" in GCC options

In GCC, there are many options begin with "g", "W", "f" or "m".

I don't know the full names and meanings of "g", "W", "f", "m".

Upvotes: 4

Views: 554

Answers (1)

0009laH
0009laH

Reputation: 2000

  • G → GCC debugging (enables debugging messages)

  • W → warning (w disables all warning messages, Wall enables all warnings)

  • F → function (deals with functions that are treated by the compiler)

  • M → make (outputs a tree map of the source file and all included file, kind of a Makefile).

You should look at this page which is very useful.

Upvotes: 0

Related Questions