qemu/sparc64.ld
<<
>>
Prefs
   1OUTPUT_FORMAT("elf64-sparc", "elf64-sparc",
   2              "elf64-sparc")
   3OUTPUT_ARCH(sparc:v9)
   4SEARCH_DIR(/lib64); SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib64); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib64); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/alpha-unknown-linux-gnu/lib);
   5ENTRY(_start)
   6SECTIONS
   7{
   8  /* Read-only sections, merged into text segment: */
   9  . = 0x60000000 + SIZEOF_HEADERS;
  10  .interp     : { *(.interp)    }
  11  .hash          : { *(.hash)           }
  12  .dynsym        : { *(.dynsym)         }
  13  .dynstr        : { *(.dynstr)         }
  14  .gnu.version   : { *(.gnu.version)    }
  15  .gnu.version_d   : { *(.gnu.version_d)        }
  16  .gnu.version_r   : { *(.gnu.version_r)        }
  17  .rel.text      :
  18    { *(.rel.text) *(.rel.gnu.linkonce.t*) }
  19  .rela.text     :
  20    { *(.rela.text) *(.rela.gnu.linkonce.t*) }
  21  .rel.data      :
  22    { *(.rel.data) *(.rel.gnu.linkonce.d*) }
  23  .rela.data     :
  24    { *(.rela.data) *(.rela.gnu.linkonce.d*) }
  25  .rel.rodata    :
  26    { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
  27  .rela.rodata   :
  28    { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
  29  .rel.got       : { *(.rel.got)                }
  30  .rela.got      : { *(.rela.got)               }
  31  .rel.ctors     : { *(.rel.ctors)      }
  32  .rela.ctors    : { *(.rela.ctors)     }
  33  .rel.dtors     : { *(.rel.dtors)      }
  34  .rela.dtors    : { *(.rela.dtors)     }
  35  .rel.init      : { *(.rel.init)       }
  36  .rela.init     : { *(.rela.init)      }
  37  .rel.fini      : { *(.rel.fini)       }
  38  .rela.fini     : { *(.rela.fini)      }
  39  .rel.bss       : { *(.rel.bss)                }
  40  .rela.bss      : { *(.rela.bss)               }
  41  .rel.plt       : { *(.rel.plt)                }
  42  .rela.plt      : { *(.rela.plt)               }
  43  .init          : { *(.init)   } =0x47ff041f
  44  .text      :
  45  {
  46    *(.text)
  47    /* .gnu.warning sections are handled specially by elf32.em.  */
  48    *(.gnu.warning)
  49    *(.gnu.linkonce.t*)
  50  } =0x47ff041f
  51  _etext = .;
  52  PROVIDE (etext = .);
  53  .fini      : { *(.fini)    } =0x47ff041f
  54  .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
  55  .rodata1   : { *(.rodata1) }
  56  . = ALIGN(64 / 8);
  57  PROVIDE (__preinit_array_start = .);
  58  .preinit_array     : { *(.preinit_array) }
  59  PROVIDE (__preinit_array_end = .);
  60  PROVIDE (__init_array_start = .);
  61  .init_array     : { *(.init_array) }
  62  PROVIDE (__init_array_end = .);
  63  PROVIDE (__fini_array_start = .);
  64  .fini_array     : { *(.fini_array) }
  65  PROVIDE (__fini_array_end = .);
  66  .reginfo : { *(.reginfo) }
  67  /* Adjust the address for the data segment.  We want to adjust up to
  68     the same address within the page on the next page up.  */
  69  . = ALIGN(0x100000) + (. & (0x100000 - 1));
  70  .data    :
  71  {
  72    *(.gen_code)
  73    *(.data)
  74    *(.gnu.linkonce.d*)
  75    CONSTRUCTORS
  76  }
  77  .data1   : { *(.data1) }
  78  .ctors         :
  79  {
  80    *(.ctors)
  81  }
  82  .dtors         :
  83  {
  84    *(.dtors)
  85  }
  86  .plt      : { *(.plt) }
  87  .got           : { *(.got.plt) *(.got) }
  88  .dynamic       : { *(.dynamic) }
  89  /* We want the small data sections together, so single-instruction offsets
  90     can access them all, and initialized data all before uninitialized, so
  91     we can shorten the on-disk segment size.  */
  92  .sdata     : { *(.sdata) }
  93  _edata  =  .;
  94  PROVIDE (edata = .);
  95  __bss_start = .;
  96  .sbss      : { *(.sbss) *(.scommon) }
  97  .bss       :
  98  {
  99   *(.dynbss)
 100   *(.bss)
 101   *(COMMON)
 102  }
 103  _end = . ;
 104  PROVIDE (end = .);
 105  /* Stabs debugging sections.  */
 106  .stab 0 : { *(.stab) }
 107  .stabstr 0 : { *(.stabstr) }
 108  .stab.excl 0 : { *(.stab.excl) }
 109  .stab.exclstr 0 : { *(.stab.exclstr) }
 110  .stab.index 0 : { *(.stab.index) }
 111  .stab.indexstr 0 : { *(.stab.indexstr) }
 112  .comment 0 : { *(.comment) }
 113  /* DWARF debug sections.
 114     Symbols in the DWARF debugging sections are relative to the beginning
 115     of the section so we begin them at 0.  */
 116  /* DWARF 1 */
 117  .debug          0 : { *(.debug) }
 118  .line           0 : { *(.line) }
 119  /* GNU DWARF 1 extensions */
 120  .debug_srcinfo  0 : { *(.debug_srcinfo) }
 121  .debug_sfnames  0 : { *(.debug_sfnames) }
 122  /* DWARF 1.1 and DWARF 2 */
 123  .debug_aranges  0 : { *(.debug_aranges) }
 124  .debug_pubnames 0 : { *(.debug_pubnames) }
 125  /* DWARF 2 */
 126  .debug_info     0 : { *(.debug_info) }
 127  .debug_abbrev   0 : { *(.debug_abbrev) }
 128  .debug_line     0 : { *(.debug_line) }
 129  .debug_frame    0 : { *(.debug_frame) }
 130  .debug_str      0 : { *(.debug_str) }
 131  .debug_loc      0 : { *(.debug_loc) }
 132  .debug_macinfo  0 : { *(.debug_macinfo) }
 133  /* SGI/MIPS DWARF 2 extensions */
 134  .debug_weaknames 0 : { *(.debug_weaknames) }
 135  .debug_funcnames 0 : { *(.debug_funcnames) }
 136  .debug_typenames 0 : { *(.debug_typenames) }
 137  .debug_varnames  0 : { *(.debug_varnames) }
 138  /* These must appear regardless of  .  */
 139}
 140