1 /* Script for ld -r: link without relocation */ 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-tradbigmips", "elf32-tradbigmips", 7 "elf32-tradlittlemips") 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 .text 0 : 82 { 83 *(.text .stub) 84 /* .gnu.warning sections are handled specially by elf32.em. */ 85 *(.gnu.warning) 86 } 87 .fini 0 : 88 { 89 KEEP (*(SORT_NONE(.fini))) 90 } 91 .rodata 0 : { *(.rodata) } 92 .rodata1 0 : { *(.rodata1) } 93 .sdata2 0 : 94 { 95 *(.sdata2) 96 } 97 .sbss2 0 : { *(.sbss2) } 98 .eh_frame_hdr : { *(.eh_frame_hdr) } 99 .eh_frame 0 : ONLY_IF_RO { KEEP (*(.eh_frame)) } 100 .gcc_except_table 0 : ONLY_IF_RO { *(.gcc_except_table 101 .gcc_except_table.*) } 102 /* These sections are generated by the Sun/Oracle C++ compiler. */ 103 .exception_ranges 0 : ONLY_IF_RO { *(.exception_ranges 104 .exception_ranges*) } 105 .plt 0 : { *(.plt) } 106 .iplt 0 : { *(.iplt) } 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 .got.plt 0 : { *(.got.plt) } 126 .data 0 : 127 { 128 *(.data) 129 } 130 .data1 0 : { *(.data1) } 131 .got 0 : { *(.got) } 132 /* We want the small data sections together, so single-instruction offsets 133 can access them all, and initialized data all before uninitialized, so 134 we can shorten the on-disk segment size. */ 135 .sdata 0 : 136 { 137 *(.sdata) 138 } 139 .lit8 0 : { *(.lit8) } 140 .lit4 0 : { *(.lit4) } 141 .sbss 0 : 142 { 143 *(.dynsbss) 144 *(.sbss) 145 *(.scommon) 146 } 147 .bss 0 : 148 { 149 *(.dynbss) 150 *(.bss) 151 *(COMMON) 152 /* Align here to ensure that the .bss section occupies space up to 153 _end. Align after .bss to ensure correct alignment even if the 154 .bss section disappears because there are no input sections. */ 155 } 156 /* Stabs debugging sections. */ 157 .stab 0 : { *(.stab) } 158 .stabstr 0 : { *(.stabstr) } 159 .stab.excl 0 : { *(.stab.excl) } 160 .stab.exclstr 0 : { *(.stab.exclstr) } 161 .stab.index 0 : { *(.stab.index) } 162 .stab.indexstr 0 : { *(.stab.indexstr) } 163 .comment 0 : { *(.comment) } 164 /* DWARF debug sections. 165 Symbols in the DWARF debugging sections are relative to the beginning 166 of the section so we begin them at 0. */ 167 /* DWARF 1 */ 168 .debug 0 : { *(.debug) } 169 .line 0 : { *(.line) } 170 /* GNU DWARF 1 extensions */ 171 .debug_srcinfo 0 : { *(.debug_srcinfo) } 172 .debug_sfnames 0 : { *(.debug_sfnames) } 173 /* DWARF 1.1 and DWARF 2 */ 174 .debug_aranges 0 : { *(.debug_aranges) } 175 .debug_pubnames 0 : { *(.debug_pubnames) } 176 /* DWARF 2 */ 177 .debug_info 0 : { *(.debug_info) } 178 .debug_abbrev 0 : { *(.debug_abbrev) } 179 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } 180 .debug_frame 0 : { *(.debug_frame) } 181 .debug_str 0 : { *(.debug_str) } 182 .debug_loc 0 : { *(.debug_loc) } 183 .debug_macinfo 0 : { *(.debug_macinfo) } 184 /* SGI/MIPS DWARF 2 extensions */ 185 .debug_weaknames 0 : { *(.debug_weaknames) } 186 .debug_funcnames 0 : { *(.debug_funcnames) } 187 .debug_typenames 0 : { *(.debug_typenames) } 188 .debug_varnames 0 : { *(.debug_varnames) } 189 /* DWARF 3 */ 190 .debug_pubtypes 0 : { *(.debug_pubtypes) } 191 .debug_ranges 0 : { *(.debug_ranges) } 192 /* DWARF Extension. */ 193 .debug_macro 0 : { *(.debug_macro) } 194 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) } 195 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } 196 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } 197 .gcc_compiled_long32 0 : { KEEP(*(.gcc_compiled_long32)) } 198 .gcc_compiled_long64 0 : { KEEP(*(.gcc_compiled_long64)) } 199 } 200