Home | History | Annotate | Download | only in ldscripts
      1 /* Script for ld -Ur: link w/out relocation, do create constructors */
      2 OUTPUT_FORMAT("elf64-l1om", "elf64-l1om",
      3 	      "elf64-l1om")
      4 OUTPUT_ARCH(l1om)
      5  /* For some reason, the Solaris linker makes bad executables
      6   if gld -r is used and the intermediate file has sections starting
      7   at non-zero addresses.  Could be a Solaris ld bug, could be a GNU ld
      8   bug.  But for now assigning the zero vmas works.  */
      9 SECTIONS
     10 {
     11   /* Read-only sections, merged into text segment: */
     12   .interp       0 : { *(.interp) }
     13   .note.gnu.build-id : { *(.note.gnu.build-id) }
     14   .hash         0 : { *(.hash) }
     15   .gnu.hash     0 : { *(.gnu.hash) }
     16   .dynsym       0 : { *(.dynsym) }
     17   .dynstr       0 : { *(.dynstr) }
     18   .gnu.version  0 : { *(.gnu.version) }
     19   .gnu.version_d 0: { *(.gnu.version_d) }
     20   .gnu.version_r 0: { *(.gnu.version_r) }
     21   .rela.init    0 : { *(.rela.init) }
     22   .rela.text    0 : { *(.rela.text) }
     23   .rela.fini    0 : { *(.rela.fini) }
     24   .rela.rodata  0 : { *(.rela.rodata) }
     25   .rela.data.rel.ro 0 : { *(.rela.data.rel.ro) }
     26   .rela.data    0 : { *(.rela.data) }
     27   .rela.tdata	0 : { *(.rela.tdata) }
     28   .rela.tbss	0 : { *(.rela.tbss) }
     29   .rela.ctors   0 : { *(.rela.ctors) }
     30   .rela.dtors   0 : { *(.rela.dtors) }
     31   .rela.got     0 : { *(.rela.got) }
     32   .rela.bss     0 : { *(.rela.bss) }
     33   .rela.ldata   0 : { *(.rela.ldata) }
     34   .rela.lbss    0 : { *(.rela.lbss) }
     35   .rela.lrodata 0 : { *(.rela.lrodata) }
     36   .rela.iplt    0 :
     37     {
     38       *(.rela.iplt)
     39     }
     40   .rela.plt     0 :
     41     {
     42       *(.rela.plt)
     43     }
     44   .init         0 :
     45   {
     46     KEEP (*(SORT_NONE(.init)))
     47   }
     48   .plt          0 : { *(.plt) }
     49   .iplt         0 : { *(.iplt) }
     50   .text         0 :
     51   {
     52     *(.text .stub)
     53     /* .gnu.warning sections are handled specially by elf32.em.  */
     54     *(.gnu.warning)
     55   }
     56   .fini         0 :
     57   {
     58     KEEP (*(SORT_NONE(.fini)))
     59   }
     60   .rodata       0 : { *(.rodata) }
     61   .rodata1      0 : { *(.rodata1) }
     62   .eh_frame_hdr : { *(.eh_frame_hdr) }
     63   .eh_frame     0 : ONLY_IF_RO { KEEP (*(.eh_frame)) }
     64   .gcc_except_table 0 : ONLY_IF_RO { *(.gcc_except_table
     65   .gcc_except_table.*) }
     66   /* These sections are generated by the Sun/Oracle C++ compiler.  */
     67   .exception_ranges 0 : ONLY_IF_RO { *(.exception_ranges
     68   .exception_ranges*) }
     69   /* Adjust the address for the data segment.  For 32 bits we want to align
     70   at exactly a page boundary to make life easier for apriori. */
     71   /* Exception handling  */
     72   .eh_frame     0 : ONLY_IF_RW { KEEP (*(.eh_frame)) }
     73   .gcc_except_table 0 : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
     74   .exception_ranges 0 : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
     75   /* Thread Local Storage sections  */
     76   .tdata	0 : { *(.tdata) }
     77   .tbss		0 : { *(.tbss) }
     78   /* Ensure the __preinit_array_start label is properly aligned.  We
     79      could instead move the label definition inside the section, but
     80      the linker would then create the section even if it turns out to
     81      be empty, which isn't pretty.  */
     82   . = ALIGN(32 / 8);
     83   .preinit_array   0 :
     84   {
     85     KEEP (*(.preinit_array))
     86   }
     87   .jcr          0 : { KEEP (*(.jcr)) }
     88   .dynamic      0 : { *(.dynamic) }
     89   .got          0 : { *(.got) *(.igot) }
     90   .got.plt      0 : { *(.got.plt)  *(.igot.plt) }
     91   .data         0 :
     92   {
     93     *(.data)
     94     SORT(CONSTRUCTORS)
     95   }
     96   .data1        0 : { *(.data1) }
     97   .bss          0 :
     98   {
     99    *(.dynbss)
    100    *(.bss)
    101    *(COMMON)
    102    /* Align here to ensure that the .bss section occupies space up to
    103       _end.  Align after .bss to ensure correct alignment even if the
    104       .bss section disappears because there are no input sections.  */
    105   }
    106   .lbss 0 :
    107   {
    108     *(.dynlbss)
    109     *(.lbss)
    110     *(LARGE_COMMON)
    111   }
    112   .lrodata 0  :
    113   {
    114     *(.lrodata)
    115   }
    116   .ldata 0  :
    117   {
    118     *(.ldata)
    119   }
    120   /* Stabs debugging sections.  */
    121   .stab          0 : { *(.stab) }
    122   .stabstr       0 : { *(.stabstr) }
    123   .stab.excl     0 : { *(.stab.excl) }
    124   .stab.exclstr  0 : { *(.stab.exclstr) }
    125   .stab.index    0 : { *(.stab.index) }
    126   .stab.indexstr 0 : { *(.stab.indexstr) }
    127   .comment       0 : { *(.comment) }
    128   /* DWARF debug sections.
    129      Symbols in the DWARF debugging sections are relative to the beginning
    130      of the section so we begin them at 0.  */
    131   /* DWARF 1 */
    132   .debug          0 : { *(.debug) }
    133   .line           0 : { *(.line) }
    134   /* GNU DWARF 1 extensions */
    135   .debug_srcinfo  0 : { *(.debug_srcinfo) }
    136   .debug_sfnames  0 : { *(.debug_sfnames) }
    137   /* DWARF 1.1 and DWARF 2 */
    138   .debug_aranges  0 : { *(.debug_aranges) }
    139   .debug_pubnames 0 : { *(.debug_pubnames) }
    140   /* DWARF 2 */
    141   .debug_info     0 : { *(.debug_info) }
    142   .debug_abbrev   0 : { *(.debug_abbrev) }
    143   .debug_line     0 : { *(.debug_line) }
    144   .debug_frame    0 : { *(.debug_frame) }
    145   .debug_str      0 : { *(.debug_str) }
    146   .debug_loc      0 : { *(.debug_loc) }
    147   .debug_macinfo  0 : { *(.debug_macinfo) }
    148   /* SGI/MIPS DWARF 2 extensions */
    149   .debug_weaknames 0 : { *(.debug_weaknames) }
    150   .debug_funcnames 0 : { *(.debug_funcnames) }
    151   .debug_typenames 0 : { *(.debug_typenames) }
    152   .debug_varnames  0 : { *(.debug_varnames) }
    153   /* DWARF 3 */
    154   .debug_pubtypes 0 : { *(.debug_pubtypes) }
    155   .debug_ranges   0 : { *(.debug_ranges) }
    156   /* DWARF Extension.  */
    157   .debug_macro    0 : { *(.debug_macro) }
    158   .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
    159 }
    160