group12.ld 224 B

1234567891011121314
  1. FORCE_GROUP_ALLOCATION
  2. PHDRS
  3. {
  4. header PT_PHDR PHDRS ;
  5. image PT_LOAD PHDRS;
  6. }
  7. SECTIONS
  8. {
  9. . = 0x1000;
  10. .text : { *(.text) *(.rodata.brlt) } :image :header
  11. /DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
  12. }