يقوم gcc -c بتجميع الملفات المصدر بدون ربط.
$ gcc -c [options] [source files]
اكتب ملف المصدر myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run\n");
}
تجميع myfile.c :
$ gcc -c myfile.c
هذا التجميع ولّد ملف كائن myfile.o .