From da1ecf8919e3fe07fbec53240015dc3cc55dbd7c Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 8 Dec 2021 19:53:54 +1030 Subject: PR28673, input file 'gcov' is the same as output file PR 28673 * ldlang.c (open_output): Use local_sym_name when checking output against input files rather than filename. --- ld/ldlang.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ld/ldlang.c b/ld/ldlang.c index 64a8f60..a0ff122 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -3400,7 +3400,7 @@ open_output (const char *name) f = f->next_real_file) if (f->flags.real) { - char *in = lrealpath (f->filename); + char *in = lrealpath (f->local_sym_name); if (filename_cmp (in, out) == 0) einfo (_("%F%P: input file '%s' is the same as output file\n"), f->filename); -- cgit v1.1