1 /* Script for ld -r: link without relocation */ 2 OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", 3 "elf32-sh-linux") 4 OUTPUT_ARCH(sh) 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.sdata 0 : { *(.rela.sdata) } 33 .rela.sbss 0 : { *(.rela.sbss) } 34 .rela.sdata2 0 : { *(.rela.sdata2) } 35 .rela.sbss2 0 : { *(.rela.sbss2) } 36 .rela.bss 0 : { *(.rela.bss) } 37 .rela.plt 0 : { *(.rela.plt) } 38 .init 0 : 39 { 40 KEEP (*(.init)) 41 } =0 42 .plt 0 : { *(.plt) } 43 .text 0 : 44 { 45 *(.text .stub) 46 /* .gnu.warning sections are handled specially by elf32.em. */ 47 *(.gnu.warning) 48 } =0 49 .fini 0 : 50 { 51 KEEP (*(.fini)) 52 } =0 53 .rodata 0 : { *(.rodata) } 54 .rodata1 0 : { *(.rodata1) } 55 .sdata2 0 : 56 { 57 *(.sdata2) 58 } 59 .sbss2 0 : { *(.sbss2) } 60 .eh_frame_hdr : { *(.eh_frame_hdr) } 61 .eh_frame 0 : ONLY_IF_RO { KEEP (*(.eh_frame)) } 62 .gcc_except_table 0 : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) } 63 /* Adjust the address for the data segment. We want to adjust up to 64 the same address within the page on the next page up. */ 65 /* Exception handling */ 66 .eh_frame 0 : ONLY_IF_RW { KEEP (*(.eh_frame)) } 67 .gcc_except_table 0 : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } 68 /* Thread Local Storage sections */ 69 .tdata 0 : { *(.tdata) } 70 .tbss 0 : { *(.tbss) } 71 .preinit_array 0 : 72 { 73 KEEP (*(.preinit_array)) 74 } 75 .init_array 0 : 76 { 77 KEEP (*(SORT(.init_array.*))) 78 KEEP (*(.init_array)) 79 } 80 .fini_array 0 : 81 { 82 KEEP (*(.fini_array)) 83 KEEP (*(SORT(.fini_array.*))) 84 } 85 .jcr 0 : { KEEP (*(.jcr)) } 86 .dynamic 0 : { *(.dynamic) } 87 .data 0 : 88 { 89 *(.data) 90 } 91 .data1 0 : { *(.data1) } 92 .note.ABI-tag 0 : { *(.note.ABI-tag) } 93 .got 0 : { *(.got.plt) *(.got) } 94 /* We want the small data sections together, so single-instruction offsets 95 can access them all, and initialized data all before uninitialized, so 96 we can shorten the on-disk segment size. */ 97 .sdata 0 : 98 { 99 *(.sdata) 100 } 101 .sbss 0 : 102 { 103 *(.dynsbss) 104 *(.sbss) 105 *(.scommon) 106 } 107 .bss 0 : 108 { 109 *(.dynbss) 110 *(.bss) 111 *(COMMON) 112 /* Align here to ensure that the .bss section occupies space up to 113 _end. Align after .bss to ensure correct alignment even if the 114 .bss section disappears because there are no input sections. 115 FIXME: Why do we need it? When there is no .bss section, we don't 116 pad the .data section. */ 117 } 118 /* Stabs debugging sections. */ 119 .stab 0 : { *(.stab) } 120 .stabstr 0 : { *(.stabstr) } 121 .stab.excl 0 : { *(.stab.excl) } 122 .stab.exclstr 0 : { *(.stab.exclstr) } 123 .stab.index 0 : { *(.stab.index) } 124 .stab.indexstr 0 : { *(.stab.indexstr) } 125 .comment 0 : { *(.comment) } 126 /* DWARF debug sections. 127 Symbols in the DWARF debugging sections are relative to the beginning 128 of the section so we begin them at 0. */ 129 /* DWARF 1 */ 130 .debug 0 : { *(.debug) } 131 .line 0 : { *(.line) } 132 /* GNU DWARF 1 extensions */ 133 .debug_srcinfo 0 : { *(.debug_srcinfo) } 134 .debug_sfnames 0 : { *(.debug_sfnames) } 135 /* DWARF 1.1 and DWARF 2 */ 136 .debug_aranges 0 : { *(.debug_aranges) } 137 .debug_pubnames 0 : { *(.debug_pubnames) } 138 /* DWARF 2 */ 139 .debug_info 0 : { *(.debug_info) } 140 .debug_abbrev 0 : { *(.debug_abbrev) } 141 .debug_line 0 : { *(.debug_line) } 142 .debug_frame 0 : { *(.debug_frame) } 143 .debug_str 0 : { *(.debug_str) } 144 .debug_loc 0 : { *(.debug_loc) } 145 .debug_macinfo 0 : { *(.debug_macinfo) } 146 /* SGI/MIPS DWARF 2 extensions */ 147 .debug_weaknames 0 : { *(.debug_weaknames) } 148 .debug_funcnames 0 : { *(.debug_funcnames) } 149 .debug_typenames 0 : { *(.debug_typenames) } 150 .debug_varnames 0 : { *(.debug_varnames) } 151 /* DWARF 3 */ 152 .debug_pubtypes 0 : { *(.debug_pubtypes) } 153 .debug_ranges 0 : { *(.debug_ranges) } 154 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) } 155 } 156