gcc -c compila archivos fuente sin vincularlos.
$ gcc -c [options] [source files]
Escriba el archivo fuente myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run\n");
}
Compile myfile.c :
$ gcc -c myfile.c
Esta compilación generó un archivo objeto myfile.o .