mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
15 lines
323 B
Plaintext
15 lines
323 B
Plaintext
|
OUTPUT_ARCH(aarch64)
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x10000;
|
||
|
.rela.plt : { *(.rela.plt) *(.rela.iplt) }
|
||
|
. = 0x18000;
|
||
|
.plt : { *(.plt) *(.iplt) }
|
||
|
. = 0x20000;
|
||
|
.text : { *(.text) }
|
||
|
. = 0x28000;
|
||
|
.got : { *(.got) *(.got.plt) }
|
||
|
.ARM.attributes 0 : { *(.ARM.atttributes) }
|
||
|
}
|