|
| 1 | +/* $FreeBSD$ */ |
| 2 | + |
| 3 | +OUTPUT_ARCH(arm) |
| 4 | +ENTRY(_start) |
| 5 | +SECTIONS |
| 6 | +{ |
| 7 | + /* Read-only sections, merged into text segment: */ |
| 8 | + . = 0; /*SIZEOF_HEADERS;*/ |
| 9 | + ImageBase = .; |
| 10 | + .text : |
| 11 | + { |
| 12 | + *(.text) |
| 13 | + /* .gnu.warning sections are handled specially by elf32.em. */ |
| 14 | + *(.gnu.warning) |
| 15 | + *(.gnu.linkonce.t*) |
| 16 | + } =0 |
| 17 | + _etext = .; |
| 18 | + PROVIDE (etext = .); |
| 19 | + .interp : { *(.interp) } |
| 20 | + .hash : { *(.hash) } |
| 21 | + .dynsym : { *(.dynsym) } |
| 22 | + .dynstr : { *(.dynstr) } |
| 23 | + .gnu.version : { *(.gnu.version) } |
| 24 | + .gnu.version_d : { *(.gnu.version_d) } |
| 25 | + .gnu.version_r : { *(.gnu.version_r) } |
| 26 | + .rela.text : |
| 27 | + { *(.rela.text) *(.rela.gnu.linkonce.t*) } |
| 28 | + .rela.data : |
| 29 | + { *(.rela.data) *(.rela.gnu.linkonce.d*) } |
| 30 | + .rela.rodata : |
| 31 | + { *(.rela.rodata) *(.rela.gnu.linkonce.r*) } |
| 32 | + .rela.got : { *(.rela.got) } |
| 33 | + .rela.got1 : { *(.rela.got1) } |
| 34 | + .rela.got2 : { *(.rela.got2) } |
| 35 | + .rela.ctors : { *(.rela.ctors) } |
| 36 | + .rela.dtors : { *(.rela.dtors) } |
| 37 | + .rela.init : { *(.rela.init) } |
| 38 | + .rela.fini : { *(.rela.fini) } |
| 39 | + .rela.bss : { *(.rela.bss) } |
| 40 | + .rela.plt : { *(.rela.plt) } |
| 41 | + .rela.sdata : { *(.rela.sdata) } |
| 42 | + .rela.sbss : { *(.rela.sbss) } |
| 43 | + .rela.sdata2 : { *(.rela.sdata2) } |
| 44 | + .rela.sbss2 : { *(.rela.sbss2) } |
| 45 | + .init : { *(.init) } =0 |
| 46 | + .fini : { *(.fini) } =0 |
| 47 | + .rodata : { *(.rodata) *(.gnu.linkonce.r*) } |
| 48 | + .rodata1 : { *(.rodata1) } |
| 49 | + .sdata2 : { *(.sdata2) } |
| 50 | + .sbss2 : { *(.sbss2) } |
| 51 | + /* Adjust the address for the data segment to the next page up. */ |
| 52 | + . = ((. + 0x1000) & ~(0x1000 - 1)); |
| 53 | + .data : |
| 54 | + { |
| 55 | + *(.data) |
| 56 | + *(.gnu.linkonce.d*) |
| 57 | + CONSTRUCTORS |
| 58 | + } |
| 59 | + .data1 : { *(.data1) } |
| 60 | + .got1 : { *(.got1) } |
| 61 | + .dynamic : { *(.dynamic) } |
| 62 | + /* Put .ctors and .dtors next to the .got2 section, so that the pointers |
| 63 | + get relocated with -mrelocatable. Also put in the .fixup pointers. |
| 64 | + The current compiler no longer needs this, but keep it around for 2.7.2 */ |
| 65 | + PROVIDE (_GOT2_START_ = .); |
| 66 | + .got2 : { *(.got2) } |
| 67 | + PROVIDE (__CTOR_LIST__ = .); |
| 68 | + .ctors : { *(.ctors) } |
| 69 | + PROVIDE (__CTOR_END__ = .); |
| 70 | + PROVIDE (__DTOR_LIST__ = .); |
| 71 | + .dtors : { *(.dtors) } |
| 72 | + PROVIDE (__DTOR_END__ = .); |
| 73 | + PROVIDE (_FIXUP_START_ = .); |
| 74 | + .fixup : { *(.fixup) } |
| 75 | + PROVIDE (_FIXUP_END_ = .); |
| 76 | + PROVIDE (_GOT2_END_ = .); |
| 77 | + PROVIDE (_GOT_START_ = .); |
| 78 | + .got : { *(.got) } |
| 79 | + .got.plt : { *(.got.plt) } |
| 80 | + PROVIDE (_GOT_END_ = .); |
| 81 | + /* We want the small data sections together, so single-instruction offsets |
| 82 | + can access them all, and initialized data all before uninitialized, so |
| 83 | + we can shorten the on-disk segment size. */ |
| 84 | + .sdata : { *(.sdata) } |
| 85 | + _edata = .; |
| 86 | + PROVIDE (edata = .); |
| 87 | + .plt : { *(.plt) } |
| 88 | + __bss_start = .; |
| 89 | + .sbss : |
| 90 | + { |
| 91 | + *(.sbss) |
| 92 | + *(.scommon) |
| 93 | + *(.dynsbss) |
| 94 | + } |
| 95 | + .bss : |
| 96 | + { |
| 97 | + *(.dynbss) |
| 98 | + *(.bss) |
| 99 | + *(COMMON) |
| 100 | + } |
| 101 | + _end = . ; |
| 102 | + /* Stabs debugging sections. */ |
| 103 | + .stab 0 : { *(.stab) } |
| 104 | + .stabstr 0 : { *(.stabstr) } |
| 105 | + /* DWARF debug sections. |
| 106 | + Symbols in the DWARF debugging sections are relative to the beginning |
| 107 | + of the section so we begin them at 0. */ |
| 108 | + /* DWARF 1 */ |
| 109 | + .debug 0 : { *(.debug) } |
| 110 | + .line 0 : { *(.line) } |
| 111 | + /* GNU DWARF 1 extensions */ |
| 112 | + .debug_srcinfo 0 : { *(.debug_srcinfo) } |
| 113 | + .debug_sfnames 0 : { *(.debug_sfnames) } |
| 114 | + /* DWARF 1.1 and DWARF 2 */ |
| 115 | + .debug_aranges 0 : { *(.debug_aranges) } |
| 116 | + .debug_pubnames 0 : { *(.debug_pubnames) } |
| 117 | + /* DWARF 2 */ |
| 118 | + .debug_info 0 : { *(.debug_info) } |
| 119 | + .debug_abbrev 0 : { *(.debug_abbrev) } |
| 120 | + .debug_line 0 : { *(.debug_line) } |
| 121 | + .debug_frame 0 : { *(.debug_frame) } |
| 122 | + .debug_str 0 : { *(.debug_str) } |
| 123 | + .debug_loc 0 : { *(.debug_loc) } |
| 124 | + .debug_macinfo 0 : { *(.debug_macinfo) } |
| 125 | + /* SGI/MIPS DWARF 2 extensions */ |
| 126 | + .debug_weaknames 0 : { *(.debug_weaknames) } |
| 127 | + .debug_funcnames 0 : { *(.debug_funcnames) } |
| 128 | + .debug_typenames 0 : { *(.debug_typenames) } |
| 129 | + .debug_varnames 0 : { *(.debug_varnames) } |
| 130 | + /* These must appear regardless of . */ |
| 131 | +} |
0 commit comments