Gcc -E hello.h -o hello.i //预编译
Gcc -S hello.i -o hello.S //汇编
Gcc -c hello.S -o hello.o //编译 .o二进制
Gcc hello.o -o hello //链接过程
-O优化 -o输出