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