mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
14 lines
289 B
Perl
14 lines
289 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
. = -0x7ff00000;
|
||
|
.text : {*(.text .text.*)}
|
||
|
. = ALIGN(64);
|
||
|
.foo : { *(.foo) }
|
||
|
.bar -0x7fef0000 : AT ((LOADADDR(.foo) + SIZEOF(.foo) + 4095) & ~(4095))
|
||
|
{ *(.bar) }
|
||
|
. = LOADADDR(.bar) + 0x200000;
|
||
|
. = ALIGN(8192);
|
||
|
.data : { *(.data) }
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|