摘要: 一、编译链接过程 1.预处理,处理代码中的宏定义和 include 文件,并做语法检查. gcc -E -o hello.cpp hello.c -32 2.编译成会变代码 gcc -x cpp-output -S -o hello.s hello.cpp -m32 3.汇编成目标代码 gcc -x 阅读全文
posted @ 2016-04-10 17:45 小剑灬 阅读(191) 评论(0) 推荐(0) 编辑