2012年11月19日

摘要: 本文为转载, 来自:http://www.cnblogs.com/showna/articles/1013399.html多谢楼主秀纳的分享。Gcc的编译流程分为了四个步骤,分别为:预处理(Pre-Processing)编译(Compiling)汇编(Assembling)链接(Linking)下面就具体来查看一下Gcc是如何完成四个步骤的。首先,有以下hello.c源代码#include<stdio.h>int main(){ printf("Hello! This is our embedded world!\n"); return 0;}(1)预处理阶段在 阅读全文
posted @ 2012-11-19 09:11 aho 阅读(239) 评论(0) 推荐(0) 编辑

导航