My notes on GNU C Compiler (GCC) Flags

Basic Flags

-c

It tells GCC to compile the source file into an object file (.o), but do not link it into an executable.

gcc -c main.c