Files
Retro68/binutils/ld/testsuite/ld-elf/loadaddr1.t
Wolfgang Thaller 5d96d8025a add binutils-2.20.1
2012-03-26 21:18:29 +02:00

8 lines
150 B
Raku

SECTIONS
{
.bar -0xa00000 : AT ((LOADADDR(.foo) + SIZEOF(.foo) + 4095) & ~(4095))
{ *(.bar) }
. = LOADADDR(.bar) + 4096;
}
INSERT AFTER .foo;