Compilador de arquivos de código fonte C e C++, efetuando também as fases de pré-processamento, assembling e linking. Mais informações: https://gcc.gnu.org.
gcc {{arquivo_fonte1.c}} {{arquivo_fonte2.c}} --output {{arquivo_executável}}
gcc {{arquivo_fonte.c}} -Wall -Og --output {{arquivo_executável}}
gcc {{arquivo_fonte.c}} --output {{arquivo_executável}} -I{{caminho/para/header}} -L{{caminho/para/biblioteca}} -l{{nome_biblioteca}}
gcc -S {{arquivo_fonte.c}}
gcc -c {{arquivo_fonte.c}}