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
Advertising