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
આ સંકલન માયફાઇલ.ઓ object બ્જેક્ટ ફાઇલ જનરેટ કરે છે .