gcc -c test.c
產出 test.o object file

gcc -c test.c -o XXX
產出 XXX object file

gcc test.c -o aaa
產出 aaa executable file

相关文章: