[PATCH] ld: Always output local symbol for relocatable link
H.J. Lu
hjl.tools@gmail.com
Tue Nov 8 22:50:30 GMT 2022
PR ld/29761
* elflink.c (elf_link_output_symstrtab): Don't skip local symbol
in SEC_EXCLUDE section for relocatable link.
---
bfd/elflink.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 019ac302905..4ef07394160 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -9997,7 +9997,8 @@ elf_link_output_symstrtab (void *finf,
if (name == NULL
|| *name == '\0'
- || (input_sec->flags & SEC_EXCLUDE))
+ || (!bfd_link_relocatable (flinfo->info)
+ && (input_sec->flags & SEC_EXCLUDE)))
elfsym->st_name = (unsigned long) -1;
else
{
--
2.37.3
More information about the Binutils
mailing list