1 OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc",
5 /* Do we need any of these for elf?
10 /* Read-only sections, merged into text segment: */
11 . = 0x50000 + SIZEOF_HEADERS;
12 .interp : { *(.interp) }
14 .dynsym : { *(.dynsym) }
15 .dynstr : { *(.dynstr) }
17 { *(.rela.text) *(.rela.gnu.linkonce.t*) }
19 { *(.rela.data) *(.rela.gnu.linkonce.d*) }
21 { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
22 .rela.got : { *(.rela.got) }
23 .rela.got1 : { *(.rela.got1) }
24 .rela.got2 : { *(.rela.got2) }
25 .rela.ctors : { *(.rela.ctors) }
26 .rela.dtors : { *(.rela.dtors) }
27 .rela.init : { *(.rela.init) }
28 .rela.fini : { *(.rela.fini) }
29 .rela.bss : { *(.rela.bss) }
30 .rela.plt : { *(.rela.plt) }
31 .rela.sdata : { *(.rela.sdata2) }
32 .rela.sbss : { *(.rela.sbss2) }
33 .rela.sdata2 : { *(.rela.sdata2) }
34 .rela.sbss2 : { *(.rela.sbss2) }
39 /* .gnu.warning sections are handled specially by elf32.em. */
43 .init : { *(.init) } =0
44 .fini : { *(.fini) } =0
45 .rodata : { *(.rodata) *(.gnu.linkonce.r*) }
46 .rodata1 : { *(.rodata1) }
49 .sdata2 : { *(.sdata2) }
50 .sbss2 : { *(.sbss2) }
51 /* Adjust the address for the data segment. We want to adjust up to
52 the same address within the page on the next page up. It would
53 be more correct to do this:
54 . = ALIGN(0x50000) + (ALIGN(8) & (0x50000 - 1));
55 The current expression does not correctly handle the case of a
56 text segment ending precisely at the end of a page; it causes the
57 data segment to skip a page. The above expression does not have
58 this problem, but it will currently (2/95) cause BFD to allocate
59 a single segment, combining both text and data, for this case.
60 This will prevent the text segment from being shared among
61 multiple executions of the program; I think that is more
62 important than losing a page of the virtual address space (note
63 that no actual memory is lost; the page which is skipped can not
65 . = ALIGN(8) + 0x50000;
72 .data1 : { *(.data1) }
74 .dynamic : { *(.dynamic) }
75 /* Put .ctors and .dtors next to the .got2 section, so that the pointers
76 get relocated with -mrelocatable. Also put in the .fixup pointers.
77 The current compiler no longer needs this, but keep it around for 2.7.2 */
78 PROVIDE (_GOT2_START_ = .);
80 PROVIDE (__CTOR_LIST__ = .);
81 .ctors : { *(.ctors) }
82 PROVIDE (__CTOR_END__ = .);
83 PROVIDE (__DTOR_LIST__ = .);
84 .dtors : { *(.dtors) }
85 PROVIDE (__DTOR_END__ = .);
86 PROVIDE (_FIXUP_START_ = .);
87 .fixup : { *(.fixup) }
88 PROVIDE (_FIXUP_END_ = .);
89 PROVIDE (_GOT2_END_ = .);
90 PROVIDE (_GOT_START_ = .);
92 .got.plt : { *(.got.plt) }
93 PROVIDE (_GOT_END_ = .);
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 : { *(.sdata) }
102 PROVIDE (__sbss_start = .);
105 PROVIDE (__sbss_end = .);
109 PROVIDE (__bss_start = .);
116 /* These are needed for ELF backends which have not yet been
117 converted to the new style linker. */
118 .stab 0 : { *(.stab) }
119 .stabstr 0 : { *(.stabstr) }
120 /* DWARF debug sections.
121 Symbols in the DWARF debugging sections are relative to the beginning
122 of the section so we begin them at 0. */
124 .debug 0 : { *(.debug) }
125 .line 0 : { *(.line) }
126 /* GNU DWARF 1 extensions */
127 .debug_srcinfo 0 : { *(.debug_srcinfo) }
128 .debug_sfnames 0 : { *(.debug_sfnames) }
129 /* DWARF 1.1 and DWARF 2 */
130 .debug_aranges 0 : { *(.debug_aranges) }
131 .debug_pubnames 0 : { *(.debug_pubnames) }
133 .debug_info 0 : { *(.debug_info) }
134 .debug_abbrev 0 : { *(.debug_abbrev) }
135 .debug_line 0 : { *(.debug_line) }
136 .debug_frame 0 : { *(.debug_frame) }
137 .debug_str 0 : { *(.debug_str) }
138 .debug_loc 0 : { *(.debug_loc) }
139 .debug_macinfo 0 : { *(.debug_macinfo) }
140 .debug_ranges 0 : { *(.debug_ranges) }
141 /* SGI/MIPS DWARF 2 extensions */
142 .debug_weaknames 0 : { *(.debug_weaknames) }
143 .debug_funcnames 0 : { *(.debug_funcnames) }
144 .debug_typenames 0 : { *(.debug_typenames) }
145 .debug_varnames 0 : { *(.debug_varnames) }
146 /* These must appear regardless of . */