gcc -c biên dịch các tệp nguồn mà không cần liên kết.
$ gcc -c [options] [source files]
Ghi tệp nguồn myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run\n");
}
Biên dịch myfile.c :
$ gcc -c myfile.c
Quá trình biên dịch này đã tạo ra tệp đối tượng myfile.o .
Advertising