aboutsummaryrefslogtreecommitdiff
path: root/aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x
diff options
context:
space:
mode:
Diffstat (limited to 'aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x')
-rw-r--r--aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x16
1 files changed, 10 insertions, 6 deletions
diff --git a/aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x b/aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x
index fb61645..ad5008e 100644
--- a/aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x
+++ b/aarch64-linux-gnu/lib/ldscripts/armelf_linux_eabi.x
@@ -1,5 +1,5 @@
/* Default linker script, for normal executables */
-/* Copyright (C) 2014-2019 Free Software Foundation, Inc.
+/* Copyright (C) 2014-2020 Free Software Foundation, Inc.
Copying and distribution of this script, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. */
@@ -7,7 +7,7 @@ OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
"elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
-SEARCH_DIR("=/home/dragon/proton-clang-build/install/aarch64-linux-gnu/lib"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
+SEARCH_DIR("=/root/build/install/aarch64-linux-gnu/lib"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
SECTIONS
{
/* Read-only sections, merged into text segment: */
@@ -77,8 +77,9 @@ SECTIONS
*(.text.exit .text.exit.*)
*(.text.startup .text.startup.*)
*(.text.hot .text.hot.*)
+ *(SORT(.text.sorted.*))
*(.text .stub .text.* .gnu.linkonce.t.*)
- /* .gnu.warning sections are handled specially by elf32.em. */
+ /* .gnu.warning sections are handled specially by elf.em. */
*(.gnu.warning)
*(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx)
}
@@ -92,9 +93,12 @@ SECTIONS
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
.rodata1 : { *(.rodata1) }
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) }
- PROVIDE_HIDDEN (__exidx_start = .);
- .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
- PROVIDE_HIDDEN (__exidx_end = .);
+ .ARM.exidx :
+ {
+ PROVIDE_HIDDEN (__exidx_start = .);
+ *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+ PROVIDE_HIDDEN (__exidx_end = .);
+ }
.eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
.eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
.gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }