mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
|
SECTIONS
|
||
|
{
|
||
|
. = 0;
|
||
|
.hash : { *(.hash) }
|
||
|
.dynsym : { *(.dynsym) }
|
||
|
.dynstr : { *(.dynstr) }
|
||
|
.rela.plt : { *(.rela.plt) }
|
||
|
|
||
|
. = 0x1000;
|
||
|
.plt : { *(.plt) }
|
||
|
|
||
|
. = 0x2000;
|
||
|
.text : { *(.text) }
|
||
|
|
||
|
. = 0x3000;
|
||
|
.dynamic : { *(.dynamic) }
|
||
|
.got : { *(.got.plt) }
|
||
|
}
|