gcc,g++编绎过程

本文详细介绍了C程序从源代码到可执行文件的整个编译过程:预处理阶段进行宏展开与头文件包含;编译阶段将预处理后的源代码转换为特定处理器的汇编语言;汇编阶段把汇编语言转为机器码并生成目标文件;链接阶段将多个目标文件链接成可执行文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.The Preprocessor
  expand macros and included header files.  

 

cpp hello.c >> hello.i

  
 

2.The Compiler
  preprocessed source code to assembly language,for a specific processor  

 

gcc -Wall -S hello.i
 


3.The assembler
  convert assembly language into machine code and generate an object file

 

as hello.s -0 hello.o
 

 

4.Linker
  linking of object files to create an executeable,in practice,an executeable requires many external functions from system and c run-time(crt) libraries.

 

gcc hello.o
 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值