gcc -c compila arquivos fonte sem vinculação.
$ gcc -c [options] [source files]
Grave o arquivo de origem myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run\n");
}
Compile myfile.c :
$ gcc -c myfile.c
Esta compilação gerou o arquivo objeto myfile.o .