GNU linker ld —— SECTIONS Command

GNU linker ld (GNU Binutils) version 2.42 —— Linker Scripts:SECTIONS Command

个人笔记,仅供参考!!

链接脚本中的 SECTIONS 命令用于描述如何将输入段映射到输出段,并决定它们在内存中的位置。

SECTIONS 命令的格式如下:

1
2
3
4
5
6
7
 
SECTIONS
{
sections-command
sections-command

}

每个 sections-command 可以是以下之一:

如果没有在链接器脚本中使用 SECTIONS 命令,链接器将按照输入文件中段出现的顺序,将每个输入段放入同名的输出段中。

参考连接:

【1】https://sourceware.org/binutils/docs/ld/SECTIONS.html