gcc
Last updated
gcc test.cgcc test.c -o testgcc -E test.c -o test.igcc -S test.igcc -c test.sgcc test.o -o testgcc -O1 test.c -o testgcc testfun.c test.c -o testgcc -c testfun.c #将testfun.c编译成testfun.o
gcc -c test.c #将test.c编译成test.o
gcc -o testfun.o test.o -o test #将testfun.o和test.o链接成test