3 /* Read-only sections, merged into text segment: */
6 .dynsym : { *(.dynsym) }
7 .dynstr : { *(.dynstr) }
8 .gnu.version : { *(.gnu.version) }
9 .gnu.version_d : { *(.gnu.version_d) }
10 .gnu.version_r : { *(.gnu.version_r) }
15 *(.rel.gnu.linkonce.t*)
21 *(.rela.gnu.linkonce.t*)
27 *(.rel.gnu.linkonce.d*)
33 *(.rela.gnu.linkonce.d*)
39 *(.rel.gnu.linkonce.r*)
45 *(.rela.gnu.linkonce.r*)
47 .rel.got : { *(.rel.got) }
48 .rela.got : { *(.rela.got) }
49 .rel.toc : { *(.rel.toc) }
50 .rela.toc : { *(.rela.toc) }
51 .rel.ctors : { *(.rel.ctors) }
52 .rela.ctors : { *(.rela.ctors) }
53 .rel.dtors : { *(.rel.dtors) }
54 .rela.dtors : { *(.rela.dtors) }
55 .rel.init : { *(.rel.init) }
56 .rela.init : { *(.rela.init) }
57 .rel.fini : { *(.rel.fini) }
58 .rela.fini : { *(.rela.fini) }
59 .rel.bss : { *(.rel.bss) }
60 .rela.bss : { *(.rela.bss) }
61 .rel.plt : { *(.rel.plt) }
62 .rela.plt : { *(.rela.plt) }
63 .rel.eh_frame : { *(.rel.eh_frame) }
64 .rela.eh_frame : { *(.rela.eh_frame) }
65 .init : { KEEP (*(.init)) }
72 /* .gnu.warning sections are handled specially by elf32.em. */
78 .fini : { KEEP (*(.fini)) } =0x9090
85 .rodata1 : { *(.rodata1) }
86 /* Adjust the address for the data segment. We want to adjust up to
87 the same address within the page on the next page up. */
88 . = ALIGN(0x1000) + (. & (0x1000 - 1));
96 .data1 : { *(.data1) }
99 /* gcc uses crtbegin.o to find the start of the constructors, so
100 we make sure it is first. Because this is a wildcard, it
101 doesn't matter if the user does not actually link against
102 crtbegin.o; the linker won't look for a file to match a
103 wildcard. The wildcard also means that it doesn't matter which
104 directory crtbegin.o is in. */
105 KEEP (*crtbegin.o(.ctors))
106 KEEP (*(SORT(.ctors.*)))
111 KEEP (*crtbegin.o(.dtors))
112 KEEP (*(SORT(.dtors.*)))
115 .got : { *(.got.plt) *(.got) }
117 .dynamic : { *(.dynamic) }
118 /* We want the small data sections together, so single-instruction offsets
119 can access them all, and initialized data all before uninitialized, so
120 we can shorten the on-disk segment size. */
121 .sdata : { *(.sdata) *(.sdata.*) }
125 .sbss : { *(.sbss) *(.scommon) }
131 /* Align here to ensure that the .bss section occupies space up to
132 _end. Align after .bss to ensure correct alignment even if the
133 .bss section disappears because there are no input sections. */
139 /* Stabs debugging sections. */
140 .stab 0 : { *(.stab) }
141 .stabstr 0 : { *(.stabstr) }
142 .stab.excl 0 : { *(.stab.excl) }
143 .stab.exclstr 0 : { *(.stab.exclstr) }
144 .stab.index 0 : { *(.stab.index) }
145 .stab.indexstr 0 : { *(.stab.indexstr) }
146 .comment 0 : { *(.comment) }
147 /* DWARF debug sections.
148 Symbols in the DWARF debugging sections are relative to the beginning
149 of the section so we begin them at 0. */
151 .debug 0 : { *(.debug) }
152 .line 0 : { *(.line) }
153 /* GNU DWARF 1 extensions */
154 .debug_srcinfo 0 : { *(.debug_srcinfo) }
155 .debug_sfnames 0 : { *(.debug_sfnames) }
156 /* DWARF 1.1 and DWARF 2 */
157 .debug_aranges 0 : { *(.debug_aranges) }
158 .debug_pubnames 0 : { *(.debug_pubnames) }
160 .debug_info 0 : { *(.debug_info) }
161 .debug_abbrev 0 : { *(.debug_abbrev) }
162 .debug_line 0 : { *(.debug_line) }
163 .debug_frame 0 : { *(.debug_frame) }
164 .debug_str 0 : { *(.debug_str) }
165 .debug_loc 0 : { *(.debug_loc) }
166 .debug_macinfo 0 : { *(.debug_macinfo) }
167 /* SGI/MIPS DWARF 2 extensions */
168 .debug_weaknames 0 : { *(.debug_weaknames) }
169 .debug_funcnames 0 : { *(.debug_funcnames) }
170 .debug_typenames 0 : { *(.debug_typenames) }
171 .debug_varnames 0 : { *(.debug_varnames) }
172 /* These must appear regardless of . */