public inbox for binutils-cvs@sourceware.org
 help / color / mirror / Atom feed
* [binutils-gdb] ld: fix build with old glibc / gcc
@ 2023-07-07 12:10 Jan Beulich
  0 siblings, 0 replies; only message in thread
From: Jan Beulich @ 2023-07-07 12:10 UTC (permalink / raw)
  To: bfd-cvs

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

commit eae2847fbff56657a5d14909b574ab8ea718ee08
Author: Jan Beulich <jbeulich@suse.com>
Date:   Fri Jul 7 14:10:21 2023 +0200

    ld: fix build with old glibc / gcc
    
    "rename" conflicts with a function of that name, which gcc from that
    same timeframe then complains about. Use a name matching that of
    struct input_remap's respective field.

Diff:
---
 ld/ldfile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ld/ldfile.c b/ld/ldfile.c
index 9d9c036dfab..df7c9cbd65e 100644
--- a/ld/ldfile.c
+++ b/ld/ldfile.c
@@ -199,7 +199,7 @@ ldfile_add_remap_file (const char * file)
 	  continue;
 	}
 
-      char * rename = p;
+      char * renamed = p;
 
       /* Advance past the rename entry.  */
       while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f'
@@ -208,7 +208,7 @@ ldfile_add_remap_file (const char * file)
       /* And terminate it.  */
       *p = '\0';
 
-      ldfile_add_remap (pattern, rename);
+      ldfile_add_remap (pattern, renamed);
     }
   while (! feof (f));

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

only message in thread, other threads:[~2023-07-07 12:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-07 12:10 [binutils-gdb] ld: fix build with old glibc / gcc Jan Beulich

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).