Retro68/binutils/ld/testsuite/ld-elf/group.ld

13 lines
200 B
Plaintext
Raw Normal View History

2017-04-10 11:32:00 +00:00
PHDRS
{
header PT_PHDR PHDRS ;
image PT_LOAD PHDRS;
}
2012-03-26 19:18:29 +00:00
SECTIONS
{
. = 0x1000;
2017-04-10 11:32:00 +00:00
.text : { *(.text) *(.rodata.brlt) } :image :header
2015-08-28 15:32:19 +00:00
/DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
2012-03-26 19:18:29 +00:00
}