Home | History | Annotate | Download | only in ldscripts
      1 /* Script for ld -Ur: link w/out relocation, do create constructors */
      2 /* Copyright (C) 2014 Free Software Foundation, Inc.
      3    Copying and distribution of this script, with or without modification,
      4    are permitted in any medium without royalty provided the copyright
      5    notice and this notice are preserved.  */
      6 OUTPUT_FORMAT("elf32-ntradlittlemips", "elf32-ntradbigmips",
      7 	      "elf32-ntradlittlemips")
      8 OUTPUT_ARCH(mips)
      9  /* For some reason, the Solaris linker makes bad executables
     10   if gld -r is used and the intermediate file has sections starting
     11   at non-zero addresses.  Could be a Solaris ld bug, could be a GNU ld
     12   bug.  But for now assigning the zero vmas works.  */
     13 SECTIONS
     14 {
     15   /* Read-only sections, merged into text segment: */
     16   .interp       0 : { *(.interp) }
     17   .MIPS.abiflags      0 : { *(.MIPS.abiflags) }
     18   .reginfo      0 : { *(.reginfo) }
     19   .note.gnu.build-id : { *(.note.gnu.build-id) }
     20   .dynamic      0 : { *(.dynamic) }
     21   .hash         0 : { *(.hash) }
     22   .gnu.hash     0 : { *(.gnu.hash) }
     23   .dynsym       0 : { *(.dynsym) }
     24   .dynstr       0 : { *(.dynstr) }
     25   .gnu.version  0 : { *(.gnu.version) }
     26   .gnu.version_d 0: { *(.gnu.version_d) }
     27   .gnu.version_r 0: { *(.gnu.version_r) }
     28   .rel.init     0 : { *(.rel.init) }
     29   .rela.init    0 : { *(.rela.init) }
     30   .rel.text     0 : { *(.rel.text) }
     31   .rela.text    0 : { *(.rela.text) }
     32   .rel.fini     0 : { *(.rel.fini) }
     33   .rela.fini    0 : { *(.rela.fini) }
     34   .rel.rodata   0 : { *(.rel.rodata) }
     35   .rela.rodata  0 : { *(.rela.rodata) }
     36   .rel.data.rel.ro 0 : { *(.rel.data.rel.ro) }
     37   .rela.data.rel.ro 0 : { *(.rela.data.rel.ro) }
     38   .rel.data     0 : { *(.rel.data) }
     39   .rela.data    0 : { *(.rela.data) }
     40   .rel.tdata	0 : { *(.rel.tdata) }
     41   .rela.tdata	0 : { *(.rela.tdata) }
     42   .rel.tbss	0 : { *(.rel.tbss) }
     43   .rela.tbss	0 : { *(.rela.tbss) }
     44   .rel.ctors    0 : { *(.rel.ctors) }
     45   .rela.ctors   0 : { *(.rela.ctors) }
     46   .rel.dtors    0 : { *(.rel.dtors) }
     47   .rela.dtors   0 : { *(.rela.dtors) }
     48   .rel.got      0 : { *(.rel.got) }
     49   .rela.got     0 : { *(.rela.got) }
     50   .rel.dyn      0 : { *(.rel.dyn) }
     51   .rel.sdata    0 : { *(.rel.sdata) }
     52   .rela.sdata   0 : { *(.rela.sdata) }
     53   .rel.sbss     0 : { *(.rel.sbss) }
     54   .rela.sbss    0 : { *(.rela.sbss) }
     55   .rel.sdata2   0 : { *(.rel.sdata2) }
     56   .rela.sdata2  0 : { *(.rela.sdata2) }
     57   .rel.sbss2    0 : { *(.rel.sbss2) }
     58   .rela.sbss2   0 : { *(.rela.sbss2) }
     59   .rel.bss      0 : { *(.rel.bss) }
     60   .rela.bss     0 : { *(.rela.bss) }
     61   .rel.iplt     0 :
     62     {
     63       *(.rel.iplt)
     64     }
     65   .rela.iplt    0 :
     66     {
     67       *(.rela.iplt)
     68     }
     69   .rel.plt      0 :
     70     {
     71       *(.rel.plt)
     72     }
     73   .rela.plt     0 :
     74     {
     75       *(.rela.plt)
     76     }
     77   .init         0 :
     78   {
     79     KEEP (*(SORT_NONE(.init)))
     80   }
     81   .plt          0 : { *(.plt) }
     82   .iplt         0 : { *(.iplt) }
     83   .text         0 :
     84   {
     85     *(.text .stub)
     86     /* .gnu.warning sections are handled specially by elf32.em.  */
     87     *(.gnu.warning)
     88   }
     89   .fini         0 :
     90   {
     91     KEEP (*(SORT_NONE(.fini)))
     92   }
     93   .rodata       0 : { *(.rodata) }
     94   .rodata1      0 : { *(.rodata1) }
     95   .sdata2       0 :
     96   {
     97     *(.sdata2)
     98   }
     99   .sbss2        0 : { *(.sbss2) }
    100   .eh_frame_hdr : { *(.eh_frame_hdr) }
    101   .eh_frame     0 : ONLY_IF_RO { KEEP (*(.eh_frame)) }
    102   .gcc_except_table 0 : ONLY_IF_RO { *(.gcc_except_table
    103   .gcc_except_table.*) }
    104   /* These sections are generated by the Sun/Oracle C++ compiler.  */
    105   .exception_ranges 0 : ONLY_IF_RO { *(.exception_ranges
    106   .exception_ranges*) }
    107   /* Adjust the address for the data segment.  For 32 bits we want to align
    108   at exactly a page boundary to make life easier for apriori. */
    109   /* Exception handling  */
    110   .eh_frame     0 : ONLY_IF_RW { KEEP (*(.eh_frame)) }
    111   .gcc_except_table 0 : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
    112   .exception_ranges 0 : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
    113   /* Thread Local Storage sections  */
    114   .tdata	0 : { *(.tdata) }
    115   .tbss		0 : { *(.tbss) }
    116   /* Ensure the __preinit_array_start label is properly aligned.  We
    117      could instead move the label definition inside the section, but
    118      the linker would then create the section even if it turns out to
    119      be empty, which isn't pretty.  */
    120   .preinit_array   0 :
    121   {
    122     KEEP (*(.preinit_array))
    123   }
    124   .jcr          0 : { KEEP (*(.jcr)) }
    125   .data         0 :
    126   {
    127     *(.data)
    128     SORT(CONSTRUCTORS)
    129   }
    130   .data1        0 : { *(.data1) }
    131   .got.plt      0 : { *(.got.plt) }
    132   .got          0 : { *(.got) }
    133   /* We want the small data sections together, so single-instruction offsets
    134      can access them all, and initialized data all before uninitialized, so
    135      we can shorten the on-disk segment size.  */
    136   .sdata        0 :
    137   {
    138     *(.sdata)
    139   }
    140   .lit8         0 : { *(.lit8) }
    141   .lit4         0 : { *(.lit4) }
    142   .srdata       0 : { *(.srdata) }
    143   .sbss         0 :
    144   {
    145     *(.dynsbss)
    146     *(.sbss)
    147     *(.scommon)
    148   }
    149   .bss          0 :
    150   {
    151    *(.dynbss)
    152    *(.bss)
    153    *(COMMON)
    154    /* Align here to ensure that the .bss section occupies space up to
    155       _end.  Align after .bss to ensure correct alignment even if the
    156       .bss section disappears because there are no input sections.  */
    157   }
    158   /* Stabs debugging sections.  */
    159   .stab          0 : { *(.stab) }
    160   .stabstr       0 : { *(.stabstr) }
    161   .stab.excl     0 : { *(.stab.excl) }
    162   .stab.exclstr  0 : { *(.stab.exclstr) }
    163   .stab.index    0 : { *(.stab.index) }
    164   .stab.indexstr 0 : { *(.stab.indexstr) }
    165   .comment       0 : { *(.comment) }
    166   /* DWARF debug sections.
    167      Symbols in the DWARF debugging sections are relative to the beginning
    168      of the section so we begin them at 0.  */
    169   /* DWARF 1 */
    170   .debug          0 : { *(.debug) }
    171   .line           0 : { *(.line) }
    172   /* GNU DWARF 1 extensions */
    173   .debug_srcinfo  0 : { *(.debug_srcinfo) }
    174   .debug_sfnames  0 : { *(.debug_sfnames) }
    175   /* DWARF 1.1 and DWARF 2 */
    176   .debug_aranges  0 : { *(.debug_aranges) }
    177   .debug_pubnames 0 : { *(.debug_pubnames) }
    178   /* DWARF 2 */
    179   .debug_info     0 : { *(.debug_info) }
    180   .debug_abbrev   0 : { *(.debug_abbrev) }
    181   .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
    182   .debug_frame    0 : { *(.debug_frame) }
    183   .debug_str      0 : { *(.debug_str) }
    184   .debug_loc      0 : { *(.debug_loc) }
    185   .debug_macinfo  0 : { *(.debug_macinfo) }
    186   /* SGI/MIPS DWARF 2 extensions */
    187   .debug_weaknames 0 : { *(.debug_weaknames) }
    188   .debug_funcnames 0 : { *(.debug_funcnames) }
    189   .debug_typenames 0 : { *(.debug_typenames) }
    190   .debug_varnames  0 : { *(.debug_varnames) }
    191   /* DWARF 3 */
    192   .debug_pubtypes 0 : { *(.debug_pubtypes) }
    193   .debug_ranges   0 : { *(.debug_ranges) }
    194   /* DWARF Extension.  */
    195   .debug_macro    0 : { *(.debug_macro) }
    196   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
    197   .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
    198   .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }
    199 }
    200