The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | /* Default linker script, for normal executables */ |
| 2 | OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", |
| 3 | "elf32-littlearm") |
| 4 | OUTPUT_ARCH(arm) |
| 5 | ENTRY(_start) |
| 6 | SEARCH_DIR("/usr/local/armdev/arm-elf/lib"); |
| 7 | /* Do we need any of these for elf? |
| 8 | __DYNAMIC = 0; */ |
| 9 | SECTIONS |
| 10 | { |
| 11 | /* Read-only sections, merged into text segment: */ |
| 12 | /* PROVIDE (__executable_start = 0x8000); . = 0x8000; */ |
| 13 | . = 0 + SIZEOF_HEADERS; |
| 14 | .interp : { *(.interp) } |
| 15 | .init : |
| 16 | { |
| 17 | KEEP (*(.init)) |
| 18 | } =0 |
| 19 | .plt : { *(.plt) } |
| 20 | .text : |
| 21 | { |
| 22 | *(.text .stub .text.* .gnu.linkonce.t.*) |
| 23 | KEEP (*(.text.*personality*)) |
| 24 | /* .gnu.warning sections are handled specially by elf32.em. */ |
| 25 | *(.gnu.warning) |
| 26 | *(.glue_7t) *(.glue_7) |
| 27 | } =0 |
| 28 | .fini : |
| 29 | { |
| 30 | KEEP (*(.fini)) |
| 31 | } =0 |
| 32 | PROVIDE (__etext = .); |
| 33 | PROVIDE (_etext = .); |
| 34 | PROVIDE (etext = .); |
| 35 | .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } |
| 36 | .rodata1 : { *(.rodata1) } |
| 37 | .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } |
| 38 | __exidx_start = .; |
| 39 | .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) } |
| 40 | __exidx_end = .; |
| 41 | .eh_frame_hdr : { *(.eh_frame_hdr) } |
| 42 | .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } |
| 43 | .gcc_except_table : ONLY_IF_RO { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) } |
| 44 | /* Adjust the address for the data segment. We want to adjust up to |
| 45 | the same address within the page on the next page up. */ |
| 46 | . = ALIGN(256) + (. & (256 - 1)); |
| 47 | /* Exception handling */ |
| 48 | .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) } |
| 49 | .gcc_except_table : ONLY_IF_RW { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) } |
| 50 | /* Thread Local Storage sections */ |
| 51 | .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) } |
| 52 | .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) } |
| 53 | /* Ensure the __preinit_array_start label is properly aligned. We |
| 54 | could instead move the label definition inside the section, but |
| 55 | the linker would then create the section even if it turns out to |
| 56 | be empty, which isn't pretty. */ |
| 57 | . = ALIGN(32 / 8); |
| 58 | PROVIDE (__preinit_array_start = .); |
| 59 | .preinit_array : { KEEP (*(.preinit_array)) } |
| 60 | PROVIDE (__preinit_array_end = .); |
| 61 | PROVIDE (__init_array_start = .); |
Evgeniy Stepanov | 67772b8 | 2012-02-09 19:25:34 +0400 | [diff] [blame] | 62 | .init_array : { |
| 63 | KEEP (*(SORT(.init_array.*))) |
| 64 | KEEP (*(.init_array)) |
| 65 | } |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 66 | PROVIDE (__init_array_end = .); |
| 67 | PROVIDE (__fini_array_start = .); |
Evgeniy Stepanov | 67772b8 | 2012-02-09 19:25:34 +0400 | [diff] [blame] | 68 | .fini_array : { |
| 69 | KEEP (*(.fini_array)) |
| 70 | KEEP (*(SORT(.fini_array.*))) |
| 71 | } |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 72 | PROVIDE (__fini_array_end = .); |
| 73 | .ctors : |
| 74 | { |
| 75 | /* gcc uses crtbegin.o to find the start of |
| 76 | the constructors, so we make sure it is |
| 77 | first. Because this is a wildcard, it |
| 78 | doesn't matter if the user does not |
| 79 | actually link against crtbegin.o; the |
| 80 | linker won't look for a file to match a |
| 81 | wildcard. The wildcard also means that it |
| 82 | doesn't matter which directory crtbegin.o |
| 83 | is in. */ |
| 84 | KEEP (*crtbegin*.o(.ctors)) |
| 85 | /* We don't want to include the .ctor section from |
| 86 | from the crtend.o file until after the sorted ctors. |
| 87 | The .ctor section from the crtend file contains the |
| 88 | end of ctors marker and it must be last */ |
| 89 | KEEP (*(EXCLUDE_FILE (*crtend*.o ) .ctors)) |
| 90 | KEEP (*(SORT(.ctors.*))) |
| 91 | KEEP (*(.ctors)) |
| 92 | } |
| 93 | .dtors : |
| 94 | { |
| 95 | KEEP (*crtbegin*.o(.dtors)) |
| 96 | KEEP (*(EXCLUDE_FILE (*crtend*.o ) .dtors)) |
| 97 | KEEP (*(SORT(.dtors.*))) |
| 98 | KEEP (*(.dtors)) |
| 99 | } |
| 100 | .jcr : { KEEP (*(.jcr)) } |
| 101 | .data.rel.ro : { *(.data.rel.ro.local) *(.data.rel.ro*) } |
| 102 | .got : { *(.got.plt) *(.got) } |
| 103 | .data : |
| 104 | { |
| 105 | __data_start = . ; |
| 106 | *(.data .data.* .gnu.linkonce.d.*) |
| 107 | KEEP (*(.gnu.linkonce.d.*personality*)) |
| 108 | SORT(CONSTRUCTORS) |
| 109 | } |
| 110 | .data1 : { *(.data1) } |
| 111 | _edata = .; |
| 112 | PROVIDE (edata = .); |
| 113 | .dynamic : { *(.dynamic) } |
| 114 | .hash : { *(.hash) } |
| 115 | .dynsym : { *(.dynsym) } |
| 116 | .dynstr : { *(.dynstr) } |
| 117 | /* .shstrtab : { *(.shstrtab) } */ |
| 118 | .rel.plt : { *(.rel.plt) } |
| 119 | .rel.dyn : { *(.rel.*) } |
| 120 | __bss_start = .; |
| 121 | __bss_start__ = .; |
| 122 | .bss : |
| 123 | { |
| 124 | *(.dynbss) |
| 125 | *(.bss .bss.* .gnu.linkonce.b.*) |
| 126 | *(COMMON) |
| 127 | /* Align here to ensure that the .bss section occupies space up to |
| 128 | _end. Align after .bss to ensure correct alignment even if the |
| 129 | .bss section disappears because there are no input sections. */ |
| 130 | . = ALIGN(32 / 8); |
| 131 | } |
| 132 | . = ALIGN(32 / 8); |
| 133 | _end = .; |
| 134 | _bss_end__ = . ; __bss_end__ = . ; __end__ = . ; |
| 135 | PROVIDE (end = .); |
| 136 | /* Stabs debugging sections. */ |
| 137 | .stab 0 : { *(.stab) } |
| 138 | .stabstr 0 : { *(.stabstr) } |
| 139 | .stab.excl 0 : { *(.stab.excl) } |
| 140 | .stab.exclstr 0 : { *(.stab.exclstr) } |
| 141 | .stab.index 0 : { *(.stab.index) } |
| 142 | .stab.indexstr 0 : { *(.stab.indexstr) } |
| 143 | /* DWARF debug sections. |
| 144 | Symbols in the DWARF debugging sections are relative to the beginning |
| 145 | of the section so we begin them at 0. */ |
| 146 | /* DWARF 1 */ |
| 147 | .debug 0 : { *(.debug) } |
| 148 | .line 0 : { *(.line) } |
| 149 | /* GNU DWARF 1 extensions */ |
| 150 | .debug_srcinfo 0 : { *(.debug_srcinfo) } |
| 151 | .debug_sfnames 0 : { *(.debug_sfnames) } |
| 152 | /* DWARF 1.1 and DWARF 2 */ |
| 153 | .debug_aranges 0 : { *(.debug_aranges) } |
| 154 | .debug_pubnames 0 : { *(.debug_pubnames) } |
| 155 | /* DWARF 2 */ |
| 156 | .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } |
| 157 | .debug_abbrev 0 : { *(.debug_abbrev) } |
| 158 | .debug_line 0 : { *(.debug_line) } |
| 159 | .debug_frame 0 : { *(.debug_frame) } |
| 160 | .debug_str 0 : { *(.debug_str) } |
| 161 | .debug_loc 0 : { *(.debug_loc) } |
| 162 | .debug_macinfo 0 : { *(.debug_macinfo) } |
| 163 | /* SGI/MIPS DWARF 2 extensions */ |
| 164 | .debug_weaknames 0 : { *(.debug_weaknames) } |
| 165 | .debug_funcnames 0 : { *(.debug_funcnames) } |
| 166 | .debug_typenames 0 : { *(.debug_typenames) } |
| 167 | .debug_varnames 0 : { *(.debug_varnames) } |
| 168 | .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) } |
| 169 | /DISCARD/ : { *(.note.GNU-stack) *(.comment*) *(.stack*) *(.shstrtab) } |
| 170 | } |