1.可以通过单步调试了解其中间过程 1>预编译指令: gcc -E file.c -o file.i 2>编译指令:gcc -S file.i -o file.s 3>汇编指令:gcc -c file.s -o file.o