Home | History | Annotate | Download | only in ld-scripts
      1 NOCROSSREFS_TO(.text .data)
      2 
      3 SECTIONS
      4 {
      5   .text : { *(.text) *(.text.*) *(.opd) }
      6   .data : { *(.data) *(.data.*) *(.sdata) *(.toc) }
      7   .bss : { *(.bss) *(COMMON) }
      8   /DISCARD/ : { *(*) }
      9 }
     10