gcc 簡單操作

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

猜你喜欢

转载自www.cnblogs.com/youchihwang/p/10692040.html
gcc