From 6e17af6dd7f3cea60475cd65473b210014cf122a Mon Sep 17 00:00:00 2001 From: Nigel Croxon Date: Wed, 12 Jun 2013 09:53:01 -0400 Subject: support .text.* sections on x86_64 Group them in .text. Also add vague linkage sections in .text. Signed-off-by: David Decotigny --- gnu-efi-3.0/gnuefi/elf_x86_64_efi.lds | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu-efi-3.0/gnuefi/elf_x86_64_efi.lds b/gnu-efi-3.0/gnuefi/elf_x86_64_efi.lds index 32cf687..c4df0a5 100644 --- a/gnu-efi-3.0/gnuefi/elf_x86_64_efi.lds +++ b/gnu-efi-3.0/gnuefi/elf_x86_64_efi.lds @@ -16,6 +16,8 @@ SECTIONS .text : { *(.text) + *(.text.*) + *(.gnu.linkonce.t.*) } . = ALIGN(4096); .reloc : -- cgit