public inbox for binutils-cvs@sourceware.org
 help / color / mirror / Atom feed
* [binutils-gdb] ld: Always output local symbol for relocatable link
@ 2022-11-09  2:39 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2022-11-09  2:39 UTC (permalink / raw)
  To: bfd-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1db13039a7c410e89f00e379fe874d8532385e41

commit 1db13039a7c410e89f00e379fe874d8532385e41
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Tue Nov 8 14:46:25 2022 -0800

    ld: Always output local symbol for relocatable link
    
            PR ld/29761
            * elflink.c (elf_link_output_symstrtab): Don't skip local symbol
            in SEC_EXCLUDE section for relocatable link.

Diff:
---
 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
     {

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-09  2:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-09  2:39 [binutils-gdb] ld: Always output local symbol for relocatable link H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).