]> xenbits.xensource.com Git - xen.git/commitdiff
x86: quote section names when defining them in linker script
authorRoger Pau Monné <roger.pau@citrix.com>
Wed, 15 Sep 2021 09:02:21 +0000 (11:02 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 15 Sep 2021 09:02:21 +0000 (11:02 +0200)
LLVM ld seems to require section names to be quoted at both definition
and when referencing them for a match to happen, or else we get the
following errors:

ld: error: xen.lds:45: undefined section ".text"
ld: error: xen.lds:69: undefined section ".rodata"
ld: error: xen.lds:104: undefined section ".note.gnu.build-id"
[...]

The original fix for GNU ld 2.37 only quoted the section name when
referencing it in the ADDR function. Fix by also quoting the section
names when declaring them.

Fixes: 58ad654ebce7 ("x86: work around build issue with GNU ld 2.37")
Reported-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/xen.lds.S

index 955d5cf4a035bc92d785aa3734172bee0ad518fc..11b1da2154ea77f3104b6c52cc9d7e9fba7a2e07 100644 (file)
@@ -18,7 +18,7 @@ ENTRY(efi_start)
 #else /* !EFI */
 
 #define FORMAT "elf64-x86-64"
-#define DECL_SECTION(x) x : AT(ADDR(#x) - __XEN_VIRT_START)
+#define DECL_SECTION(x) #x : AT(ADDR(#x) - __XEN_VIRT_START)
 
 ENTRY(start_pa)