其他分享
首页 > 其他分享> > 编译过程

编译过程

作者:互联网

C program compilation process

Compilation refers to the process of converting source code into object code, which is completed by compiler.

img

four phases:

Pre-processing

Compiling

Convert high-level code(C language) into assembly language.

Assembling

Convert assembly language into machine language.

Linking

Make code of functions which are in the library and other object files available to your main program.

Static Linking —— (.a, .lib)

Copy the code of function from other files to your object code before load.

Dynamic Linking ——(.so, .dll)

Get the address of the function, and load the code of function at run-time. (like a pointer)

img

File type

img
not stripped:
ELF文件中含有符号表,但是这些符号表可以用strip工具去除,这样的话这个文件就无法让debug程序跟踪了,但是会生成比较小的可执行文件。若对未连接的目标文件来说用strip去掉符号表,会导致连接器无法连接。

MDK编译过程及文件类型详解

标签:files,code,符号表,language,library,编译,program,过程
来源: https://www.cnblogs.com/jpdeng/p/15850424.html