编写hello.c 使用不同直接处理源文件 预处理 gcc -E hello.c -o hello.i 编译 gcc -S hello.i -o hello.s 汇编 gcc -c hello.s -o hello.o 连接 gcc hello.o -o hello 查看运行结果