orphan-11.ld 469 B

12345678910111213141516
  1. SECTIONS
  2. {
  3. . = SIZEOF_HEADERS;
  4. .text : { *(.text .text.*) }
  5. .data : { *(.data .data.*) }
  6. .bss : { *(.bss .bss.*) *(COMMON) }
  7. .sbss : { *(.sbss .sbss.*) }
  8. .note : { *(.note .note.*) }
  9. .rela : { *(.rela .rela.*) }
  10. .rel : { *(.rel .rel.*) }
  11. /DISCARD/ : {
  12. *(.reginfo) *(.MIPS.abiflags) *(.MIPS.options) *(.trampolines)
  13. *(.iplt*) *(.note*) *(.got*) *(.igot*) *(.*.attributes) *(.*.info)
  14. *(.pdr) "linker stubs*"(*) }
  15. }