c语言文件格式
source file
pretreatment 预处理文件
assembler file 汇编文件
- assembler source, ASCII text
- can only assembler
- assembler source, ASCII text
- can pretreatment + assembler
object file 目标文件
- ELF 32-bit LSB relocatable
- type ELF, need link to turn exe file
exe file 可执行文件
- .S to bin ,only bin data, not include address
- ELF 32-bit LSB executable
- type ELF ubder Linux , object file,
- ASCII text
- burn into board, include data and address
linux C file format analysis
原文:https://www.cnblogs.com/kumata/p/11859046.html