摘要: 一. GCC编译过程 gcc -E hello.c -o hello.i // 预处理。将代码中包含的头文件和宏进行替换 gcc -S hello.i -o hello.s // 汇编。将当前文本转换为汇编代码 gcc -c hello.s -o hello.o // 编译。将当前汇编代码转换成二进 阅读全文
posted @ 2017-08-11 14:50 夜行过客 阅读(289) 评论(0) 推荐(0) 编辑