Preprocesa y compila archivos de código fuente C y C++, luego los ensambla y los une. Parte de GCC Colección de Compilación GNU (GNU Compiler Collection). Más información: https://gcc.gnu.org.
gcc {{ruta/a/la/fuente1.c ruta/a/la/fuente2.c ...}} {{-o|--output}} {{ruta/al/ejecutable}}
gcc {{ruta/a/la/fuente.c}} -Wall {{-o|--output}} {{ejecutable}}
gcc {{ruta/a/la/fuente.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{ruta/al/ejecutable}}
gcc {{ruta/a/la/fuente.c}} {{-o|--output}} {{ruta/al/ejecutable}} -I{{ruta/a/header}} -L{{ruta/a/la/biblioteca}} -l{{nombre_de_biblioteca}}
gcc {{-S|--assemble}} {{ruta/a/la/fuente.c}}
gcc {{-c|--compile}} {{ruta/a/la/fuente.c}}
gcc {{ruta/a/la/fuente.c}} -O{{1|2|3|fast}} {{-o|--output}} {{ruta/al/ejecutable}}
gcc --version