1 /* Script for -shared */ 2 /* Copyright (C) 2014-2021 Free Software Foundation, Inc. 3 Copying and distribution of this script, with or without modification, 4 are permitted in any medium without royalty provided the copyright 5 notice and this notice are preserved. */ 6 OUTPUT_FORMAT("elf64-bigaarch64", "elf64-bigaarch64", 7 "elf64-littleaarch64") 8 OUTPUT_ARCH(aarch64) 9 ENTRY(_start) 10 SEARCH_DIR("=/aarch64-none-linux-gnu/lib64"); SEARCH_DIR("=/usr/local/lib64"); SEARCH_DIR("=/lib64"); SEARCH_DIR("=/usr/lib64"); SEARCH_DIR("=/aarch64-none-linux-gnu/lib"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib"); 11 SECTIONS 12 { 13 /* Read-only sections, merged into text segment: */ 14 . = SEGMENT_START("text-segment", 0) + SIZEOF_HEADERS; 15 .note.gnu.build-id : { *(.note.gnu.build-id) } 16 .hash : { *(.hash) } 17 .gnu.hash : { *(.gnu.hash) } 18 .dynsym : { *(.dynsym) } 19 .dynstr : { *(.dynstr) } 20 .gnu.version : { *(.gnu.version) } 21 .gnu.version_d : { *(.gnu.version_d) } 22 .gnu.version_r : { *(.gnu.version_r) } 23 .rela.init : { *(.rela.init) } 24 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) } 25 .rela.fini : { *(.rela.fini) } 26 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) } 27 .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) } 28 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) } 29 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) } 30 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) } 31 .rela.ctors : { *(.rela.ctors) } 32 .rela.dtors : { *(.rela.dtors) } 33 .rela.got : { *(.rela.got) } 34 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } 35 .rela.ifunc : { *(.rela.ifunc) } 36 .rela.plt : 37 { 38 *(.rela.plt) 39 *(.rela.iplt) 40 } 41 .init : 42 { 43 KEEP (*(SORT_NONE(.init))) 44 } =0x1f2003d5 45 .plt : ALIGN(16) { *(.plt) *(.iplt) } 46 .text : 47 { 48 *(.text.unlikely .text.*_unlikely .text.unlikely.*) 49 *(.text.exit .text.exit.*) 50 *(.text.startup .text.startup.*) 51 *(.text.hot .text.hot.*) 52 *(SORT(.text.sorted.*)) 53 *(.text .stub .text.* .gnu.linkonce.t.*) 54 /* .gnu.warning sections are handled specially by elf.em. */ 55 *(.gnu.warning) 56 } =0x1f2003d5 57 .fini : 58 { 59 KEEP (*(SORT_NONE(.fini))) 60 } =0x1f2003d5 61 PROVIDE (__etext = .); 62 PROVIDE (_etext = .); 63 PROVIDE (etext = .); 64 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } 65 .rodata1 : { *(.rodata1) } 66 .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) } 67 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) } 68 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) } 69 .gnu_extab : ONLY_IF_RO { *(.gnu_extab*) } 70 /* These sections are generated by the Sun/Oracle C++ compiler. */ 71 .exception_ranges : ONLY_IF_RO { *(.exception_ranges*) } 72 /* Adjust the address for the data segment. We want to adjust up to 73 the same address within the page on the next page up. */ 74 . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE)); 75 /* Exception handling */ 76 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) } 77 .gnu_extab : ONLY_IF_RW { *(.gnu_extab) } 78 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } 79 .exception_ranges : ONLY_IF_RW { *(.exception_ranges*) } 80 /* Thread Local Storage sections */ 81 .tdata : 82 { 83 *(.tdata .tdata.* .gnu.linkonce.td.*) 84 } 85 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) } 86 .preinit_array : 87 { 88 KEEP (*(.preinit_array)) 89 } 90 .init_array : 91 { 92 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))) 93 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors)) 94 } 95 .fini_array : 96 { 97 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))) 98 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors)) 99 } 100 .ctors : 101 { 102 /* gcc uses crtbegin.o to find the start of 103 the constructors, so we make sure it is 104 first. Because this is a wildcard, it 105 doesn't matter if the user does not 106 actually link against crtbegin.o; the 107 linker won't look for a file to match a 108 wildcard. The wildcard also means that it 109 doesn't matter which directory crtbegin.o 110 is in. */ 111 KEEP (*crtbegin.o(.ctors)) 112 KEEP (*crtbegin?.o(.ctors)) 113 /* We don't want to include the .ctor section from 114 the crtend.o file until after the sorted ctors. 115 The .ctor section from the crtend file contains the 116 end of ctors marker and it must be last */ 117 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors)) 118 KEEP (*(SORT(.ctors.*))) 119 KEEP (*(.ctors)) 120 } 121 .dtors : 122 { 123 KEEP (*crtbegin.o(.dtors)) 124 KEEP (*crtbegin?.o(.dtors)) 125 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors)) 126 KEEP (*(SORT(.dtors.*))) 127 KEEP (*(.dtors)) 128 } 129 .jcr : { KEEP (*(.jcr)) } 130 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) } 131 .dynamic : { *(.dynamic) } 132 .got : { *(.got) *(.igot) } 133 . = DATA_SEGMENT_RELRO_END (24, .); 134 .got.plt : { *(.got.plt) *(.igot.plt) } 135 .data : 136 { 137 PROVIDE (__data_start = .); 138 *(.data .data.* .gnu.linkonce.d.*) 139 SORT(CONSTRUCTORS) 140 } 141 .data1 : { *(.data1) } 142 PROVIDE (_edata = .); PROVIDE (edata = .); 143 . = .; 144 PROVIDE (__bss_start = .); 145 PROVIDE (__bss_start__ = .); 146 .bss : 147 { 148 *(.dynbss) 149 *(.bss .bss.* .gnu.linkonce.b.*) 150 *(COMMON) 151 /* Align here to ensure that the .bss section occupies space up to 152 _end. Align after .bss to ensure correct alignment even if the 153 .bss section disappears because there are no input sections. 154 FIXME: Why do we need it? When there is no .bss section, we do not 155 pad the .data section. */ 156 . = ALIGN(. != 0 ? 64 / 8 : 1); 157 } 158 PROVIDE (_bss_end__ = .); PROVIDE (__bss_end__ = .); 159 . = ALIGN(64 / 8); 160 . = SEGMENT_START("ldata-segment", .); 161 . = ALIGN(64 / 8); 162 PROVIDE (__end__ = .); 163 PROVIDE (_end = .); PROVIDE (end = .); 164 . = DATA_SEGMENT_END (.); 165 /* Stabs debugging sections. */ 166 .stab 0 : { *(.stab) } 167 .stabstr 0 : { *(.stabstr) } 168 .stab.excl 0 : { *(.stab.excl) } 169 .stab.exclstr 0 : { *(.stab.exclstr) } 170 .stab.index 0 : { *(.stab.index) } 171 .stab.indexstr 0 : { *(.stab.indexstr) } 172 .comment 0 : { *(.comment) } 173 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) } 174 /* DWARF debug sections. 175 Symbols in the DWARF debugging sections are relative to the beginning 176 of the section so we begin them at 0. */ 177 /* DWARF 1. */ 178 .debug 0 : { *(.debug) } 179 .line 0 : { *(.line) } 180 /* GNU DWARF 1 extensions. */ 181 .debug_srcinfo 0 : { *(.debug_srcinfo) } 182 .debug_sfnames 0 : { *(.debug_sfnames) } 183 /* DWARF 1.1 and DWARF 2. */ 184 .debug_aranges 0 : { *(.debug_aranges) } 185 .debug_pubnames 0 : { *(.debug_pubnames) } 186 /* DWARF 2. */ 187 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } 188 .debug_abbrev 0 : { *(.debug_abbrev) } 189 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end) } 190 .debug_frame 0 : { *(.debug_frame) } 191 .debug_str 0 : { *(.debug_str) } 192 .debug_loc 0 : { *(.debug_loc) } 193 .debug_macinfo 0 : { *(.debug_macinfo) } 194 /* SGI/MIPS DWARF 2 extensions. */ 195 .debug_weaknames 0 : { *(.debug_weaknames) } 196 .debug_funcnames 0 : { *(.debug_funcnames) } 197 .debug_typenames 0 : { *(.debug_typenames) } 198 .debug_varnames 0 : { *(.debug_varnames) } 199 /* DWARF 3. */ 200 .debug_pubtypes 0 : { *(.debug_pubtypes) } 201 .debug_ranges 0 : { *(.debug_ranges) } 202 /* DWARF 5. */ 203 .debug_addr 0 : { *(.debug_addr) } 204 .debug_line_str 0 : { *(.debug_line_str) } 205 .debug_loclists 0 : { *(.debug_loclists) } 206 .debug_macro 0 : { *(.debug_macro) } 207 .debug_names 0 : { *(.debug_names) } 208 .debug_rnglists 0 : { *(.debug_rnglists) } 209 .debug_str_offsets 0 : { *(.debug_str_offsets) } 210 .debug_sup 0 : { *(.debug_sup) } 211 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) } 212 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) } 213 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) } 214 } 215