标签:过程 nbsp cal 二进制 汇编 gpo post 链接 优化
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输出
gcc
原文地址:http://www.cnblogs.com/ming-michelle/p/8053837.html