mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
19 lines
343 B
Plaintext
19 lines
343 B
Plaintext
|
OUTPUT_ARCH(arm)
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x07000;
|
||
|
.hash : { *(.hash) }
|
||
|
.gnu.hash : { *(.gnu.hash) }
|
||
|
.dynsym : { *(.dynsym) }
|
||
|
.dynstr : { *(.dynstr) }
|
||
|
.rel.dyn : { *(.rel.dyn) }
|
||
|
.rel.plt : { *(.rel.plt) }
|
||
|
. = 0x08000;
|
||
|
.plt : { *(.plt) }
|
||
|
. = 0x08ff0;
|
||
|
.text : { *(.text) }
|
||
|
. = 0x10000;
|
||
|
.dynamic : { *(.dynamic) }
|
||
|
}
|