1 gcc -S file_name.c // 默认编译成以当前文件名后缀为 .s 的汇编程序 2 gcc -c file_name.s // 默认编译成以当前文件名后缀为 .o 的中间文件 3 gcc -o target file_name.o // 将 .o 的中间文件编译成可执行文件