1 /* Default linker script, for normal executables */ 2 /* Modified for Android. */ 3 /* Copyright (C) 2014 Free Software Foundation, Inc. 4 Copying and distribution of this script, with or without modification, 5 are permitted in any medium without royalty provided the copyright 6 notice and this notice are preserved. */ 7 OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips", 8 "elf32-tradlittlemips") 9 OUTPUT_ARCH(mips) 10 ENTRY(__start) 11 SECTIONS 12 { 13 /* Read-only sections, merged into text segment: */ 14 PROVIDE (__executable_start = 0x80000); . = 0x80000 + SIZEOF_HEADERS; 15 .interp : { *(.interp) } 16 .MIPS.abiflags : { *(.MIPS.abiflags) } 17 .reginfo : { *(.reginfo) } 18 .note.gnu.build-id : { *(.note.gnu.build-id) } 19 .dynamic : { *(.dynamic) } 20 .hash : { *(.hash) } 21 .gnu.hash : { *(.gnu.hash) } 22 .dynsym : { *(.dynsym) } 23 .dynstr : { *(.dynstr) } 24 .gnu.version : { *(.gnu.version) } 25 .gnu.version_d : { *(.gnu.version_d) } 26 .gnu.version_r : { *(.gnu.version_r) } 27 .rel.init : { *(.rel.init) } 28 .rela.init : { *(.rela.init) } 29 .rel.text : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) } 30 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) } 31 .rel.fini : { *(.rel.fini) } 32 .rela.fini : { *(.rela.fini) } 33 .rel.rodata : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) } 34 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) } 35 .rel.data.rel.ro : { *(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*) } 36 .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) } 37 .rel.data : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) } 38 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) } 39 .rel.tdata : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) } 40 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) } 41 .rel.tbss : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) } 42 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) } 43 .rel.ctors : { *(.rel.ctors) } 44 .rela.ctors : { *(.rela.ctors) } 45 .rel.dtors : { *(.rel.dtors) } 46 .rela.dtors : { *(.rela.dtors) } 47 .rel.got : { *(.rel.got) } 48 .rela.got : { *(.rela.got) } 49 .rel.dyn : { *(.rel.dyn) } 50 .rel.sdata : { *(.rel.sdata .rel.sdata.* .rel.gnu.linkonce.s.*) } 51 .rela.sdata : { *(.rela.sdata .rela.sdata.* .rela.gnu.linkonce.s.*) } 52 .rel.sbss : { *(.rel.sbss .rel.sbss.* .rel.gnu.linkonce.sb.*) } 53 .rela.sbss : { *(.rela.sbss .rela.sbss.* .rela.gnu.linkonce.sb.*) } 54 .rel.sdata2 : { *(.rel.sdata2 .rel.sdata2.* .rel.gnu.linkonce.s2.*) } 55 .rela.sdata2 : { *(.rela.sdata2 .rela.sdata2.* .rela.gnu.linkonce.s2.*) } 56 .rel.sbss2 : { *(.rel.sbss2 .rel.sbss2.* .rel.gnu.linkonce.sb2.*) } 57 .rela.sbss2 : { *(.rela.sbss2 .rela.sbss2.* .rela.gnu.linkonce.sb2.*) } 58 .rel.bss : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) } 59 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } 60 .rel.iplt : 61 { 62 PROVIDE_HIDDEN (__rel_iplt_start = .); 63 *(.rel.iplt) 64 PROVIDE_HIDDEN (__rel_iplt_end = .); 65 } 66 .rela.iplt : 67 { 68 PROVIDE_HIDDEN (__rela_iplt_start = .); 69 *(.rela.iplt) 70 PROVIDE_HIDDEN (__rela_iplt_end = .); 71 } 72 .rel.plt : 73 { 74 *(.rel.plt) 75 } 76 .rela.plt : 77 { 78 *(.rela.plt) 79 } 80 .init : 81 { 82 KEEP (*(SORT_NONE(.init))) 83 } 84 .text : 85 { 86 _ftext = . ; 87 *(.text.unlikely .text.*_unlikely .text.unlikely.*) 88 *(.text.exit .text.exit.*) 89 *(.text.startup .text.startup.*) 90 *(.text.hot .text.hot.*) 91 *(.text .stub .text.* .gnu.linkonce.t.*) 92 /* .gnu.warning sections are handled specially by elf32.em. */ 93 *(.gnu.warning) 94 *(.mips16.fn.*) *(.mips16.call.*) 95 } 96 .fini : 97 { 98 KEEP (*(SORT_NONE(.fini))) 99 } 100 PROVIDE (__etext = .); 101 PROVIDE (_etext = .); 102 PROVIDE (etext = .); 103 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } 104 .rodata1 : { *(.rodata1) } 105 .sdata2 : 106 { 107 *(.sdata2 .sdata2.* .gnu.linkonce.s2.*) 108 } 109 .sbss2 : { *(.sbss2 .sbss2.* .gnu.linkonce.sb2.*) } 110 .eh_frame_hdr : { *(.eh_frame_hdr) } 111 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } 112 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table 113 .gcc_except_table.*) } 114 /* These sections are generated by the Sun/Oracle C++ compiler. */ 115 .exception_ranges : ONLY_IF_RO { *(.exception_ranges 116 .exception_ranges*) } 117 .plt : { *(.plt) } 118 .iplt : { *(.iplt) } 119 /* Adjust the address for the data segment. For 32 bits we want to align 120 at exactly a page boundary to make life easier for apriori. */ 121 . = ALIGN (CONSTANT (MAXPAGESIZE)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE)); 122 /* Exception handling */ 123 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) } 124 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } 125 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) } 126 /* Thread Local Storage sections */ 127 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) } 128 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) } 129 /* Ensure the __preinit_array_start label is properly aligned. We 130 could instead move the label definition inside the section, but 131 the linker would then create the section even if it turns out to 132 be empty, which isn't pretty. */ 133 . = ALIGN(32 / 8); 134 PROVIDE_HIDDEN (__preinit_array_start = .); 135 .preinit_array : 136 { 137 KEEP (*(.preinit_array)) 138 } 139 PROVIDE_HIDDEN (__preinit_array_end = .); 140 PROVIDE_HIDDEN (__init_array_start = .); 141 .init_array : 142 { 143 KEEP (*crtbegin*.o(.init_array)) 144 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))) 145 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors)) 146 } 147 PROVIDE_HIDDEN (__init_array_end = .); 148 PROVIDE_HIDDEN (__fini_array_start = .); 149 .fini_array : 150 { 151 KEEP (*crtbegin*.o(.fini_array)) 152 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))) 153 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors)) 154 } 155 PROVIDE_HIDDEN (__fini_array_end = .); 156 .ctors : 157 { 158 /* gcc uses crtbegin.o to find the start of 159 the constructors, so we make sure it is 160 first. Because this is a wildcard, it 161 doesn't matter if the user does not 162 actually link against crtbegin.o; the 163 linker won't look for a file to match a 164 wildcard. The wildcard also means that it 165 doesn't matter which directory crtbegin.o 166 is in. */ 167 KEEP (*crtbegin.o(.ctors)) 168 KEEP (*crtbegin*.o(.ctors)) 169 /* We don't want to include the .ctor section from 170 the crtend.o file until after the sorted ctors. 171 The .ctor section from the crtend file contains the 172 end of ctors marker and it must be last */ 173 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors)) 174 KEEP (*(SORT(.ctors.*))) 175 KEEP (*(.ctors)) 176 } 177 .dtors : 178 { 179 KEEP (*crtbegin.o(.dtors)) 180 KEEP (*crtbegin*.o(.dtors)) 181 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors)) 182 KEEP (*(SORT(.dtors.*))) 183 KEEP (*(.dtors)) 184 } 185 .jcr : { KEEP (*(.jcr)) } 186 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) } 187 . = DATA_SEGMENT_RELRO_END (0, .); 188 .got.plt : { *(.got.plt) } 189 .data : 190 { 191 _fdata = . ; 192 *(.data .data.* .gnu.linkonce.d.*) 193 SORT(CONSTRUCTORS) 194 } 195 .data1 : { *(.data1) } 196 . = .; 197 . = .; 198 HIDDEN (_gp = ALIGN (16) + 0x7ff0); 199 .got : { *(.got) } 200 /* We want the small data sections together, so single-instruction offsets 201 can access them all, and initialized data all before uninitialized, so 202 we can shorten the on-disk segment size. */ 203 .sdata : 204 { 205 *(.sdata .sdata.* .gnu.linkonce.s.*) 206 } 207 .lit8 : { *(.lit8) } 208 .lit4 : { *(.lit4) } 209 _edata = .; PROVIDE (edata = .); 210 . = .; 211 __bss_start = .; 212 _fbss = .; 213 .sbss : 214 { 215 *(.dynsbss) 216 *(.sbss .sbss.* .gnu.linkonce.sb.*) 217 *(.scommon) 218 } 219 .bss : 220 { 221 *(.dynbss) 222 *(.bss .bss.* .gnu.linkonce.b.*) 223 *(COMMON) 224 /* Align here to ensure that the .bss section occupies space up to 225 _end. Align after .bss to ensure correct alignment even if the 226 .bss section disappears because there are no input sections. */ 227 . = ALIGN(32 / 8); 228 } 229 . = ALIGN(32 / 8); 230 . = SEGMENT_START("ldata-segment", .); 231 . = ALIGN(32 / 8); 232 _end = .; 233 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; 234 PROVIDE (end = .); 235 . = DATA_SEGMENT_END (.); 236 /* Stabs debugging sections. */ 237 .stab 0 : { *(.stab) } 238 .stabstr 0 : { *(.stabstr) } 239 .stab.excl 0 : { *(.stab.excl) } 240 .stab.exclstr 0 : { *(.stab.exclstr) } 241 .stab.index 0 : { *(.stab.index) } 242 .stab.indexstr 0 : { *(.stab.indexstr) } 243 .comment 0 : { *(.comment) } 244 /* DWARF debug sections. 245 Symbols in the DWARF debugging sections are relative to the beginning 246 of the section so we begin them at 0. */ 247 /* DWARF 1 */ 248 .debug 0 : { *(.debug) } 249 .line 0 : { *(.line) } 250 /* GNU DWARF 1 extensions */ 251 .debug_srcinfo 0 : { *(.debug_srcinfo) } 252 .debug_sfnames 0 : { *(.debug_sfnames) } 253 /* DWARF 1.1 and DWARF 2 */ 254 .debug_aranges 0 : { *(.debug_aranges) } 255 .debug_pubnames 0 : { *(.debug_pubnames) } 256 /* DWARF 2 */ 257 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } 258 .debug_abbrev 0 : { *(.debug_abbrev) } 259 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } 260 .debug_frame 0 : { *(.debug_frame) } 261 .debug_str 0 : { *(.debug_str) } 262 .debug_loc 0 : { *(.debug_loc) } 263 .debug_macinfo 0 : { *(.debug_macinfo) } 264 /* SGI/MIPS DWARF 2 extensions */ 265 .debug_weaknames 0 : { *(.debug_weaknames) } 266 .debug_funcnames 0 : { *(.debug_funcnames) } 267 .debug_typenames 0 : { *(.debug_typenames) } 268 .debug_varnames 0 : { *(.debug_varnames) } 269 /* DWARF 3 */ 270 .debug_pubtypes 0 : { *(.debug_pubtypes) } 271 .debug_ranges 0 : { *(.debug_ranges) } 272 /* DWARF Extension. */ 273 .debug_macro 0 : { *(.debug_macro) } 274 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) } 275 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } 276 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } 277 .gcc_compiled_long32 0 : { KEEP(*(.gcc_compiled_long32)) } 278 .gcc_compiled_long64 0 : { KEEP(*(.gcc_compiled_long64)) } 279 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) } 280 } 281