From 554bde5ee041cff45bef17f8d90e7afbf288f870 Mon Sep 17 00:00:00 2001 From: Bernhard Rosenkraenzer Date: Thu, 18 Sep 2014 04:09:52 +0200 Subject: Fix bug #667, pull in latest Linaro binutils Source: https://android-build.linaro.org/builds/~linaro-android/toolchain64-4.9-2014.09/#build=3 Signed-off-by: Bernhard Rosenkraenzer --- aarch64-linux-android/lib/ldscripts/aarch64elf.xsc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'aarch64-linux-android/lib/ldscripts/aarch64elf.xsc') diff --git a/aarch64-linux-android/lib/ldscripts/aarch64elf.xsc b/aarch64-linux-android/lib/ldscripts/aarch64elf.xsc index 29158e7..31e4b9b 100644 --- a/aarch64-linux-android/lib/ldscripts/aarch64elf.xsc +++ b/aarch64-linux-android/lib/ldscripts/aarch64elf.xsc @@ -29,21 +29,21 @@ SECTIONS *(.rela.dtors) *(.rela.got) *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) - *(.rela.iplt) + *(.rela.ifunc) } .rela.plt : { *(.rela.plt) + *(.rela.iplt) } .init : { KEEP (*(SORT_NONE(.init))) } =0 - .plt : { *(.plt) } - .iplt : { *(.iplt) } + .plt : { *(.plt) *(.iplt) } .text : { - *(.text.unlikely .text.*_unlikely) + *(.text.unlikely .text.*_unlikely .text.unlikely.*) *(.text.exit .text.exit.*) *(.text.startup .text.startup.*) *(.text.hot .text.hot.*) @@ -146,12 +146,12 @@ SECTIONS .bss section disappears because there are no input sections. FIXME: Why do we need it? When there is no .bss section, we don't pad the .data section. */ - . = ALIGN(. != 0 ? 32 / 8 : 1); + . = ALIGN(. != 0 ? 64 / 8 : 1); } _bss_end__ = . ; __bss_end__ = . ; - . = ALIGN(32 / 8); + . = ALIGN(64 / 8); . = SEGMENT_START("ldata-segment", .); - . = ALIGN(32 / 8); + . = ALIGN(64 / 8); __end__ = . ; _end = .; PROVIDE (end = .); /* Stabs debugging sections. */ @@ -177,7 +177,7 @@ SECTIONS /* DWARF 2 */ .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } + .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) } .debug_frame 0 : { *(.debug_frame) } .debug_str 0 : { *(.debug_str) } .debug_loc 0 : { *(.debug_loc) } @@ -199,5 +199,5 @@ SECTIONS } .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) } .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) } - /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.gnu_object_only) } + /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) } } -- cgit v1.2.3