What does an object file contain?(目标文件包含什么?)
问题描述
在 C 或 C++ 编译的各个阶段,我知道生成了一个目标文件(即 any_name.o 文件).这个 .o 文件包含什么?我无法打开它,因为它是一个二进制文件.
During the various stages of compilation in C or C++, I know that an object file gets generated (i.e., any_name.o file). What does this .o file contain? I can't open it since it's a binary file.
有人可以帮我吗?目标文件的内容是否主要取决于我们在 Unix 上使用的编译器?
Could anybody please help me? Are the contents of the object file mainly dependent on the compiler which we use on Unix?
推荐答案
对象文件可以包含一堆东西:基本上是下面的部分或全部列表:
Object files can contain a bunch of stuff: Basically it's some or all of the list below:
- 符号名称
- 编译代码
- 常量数据,例如.字符串
- 导入 - 编译后的代码引用了哪些符号(由链接器修复)
- 导出 - 目标文件可用于其他目标文件的符号.
链接器通过匹配所有导入和导出,并修改编译后的代码以便调用正确的函数,将一堆目标文件转换为可执行文件.
The linker turns a bunch of object files into an executable, by matching up all the imports and exports, and modifying the compiled code so the correct functions get called.
这篇关于目标文件包含什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:目标文件包含什么?
基础教程推荐
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- c++ STL设置差异 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
