This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Report failed attempts to locate DT_NEEDED files when --verbose is in effect.


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

commit 0ec22c2c9fd06505f333c00235b3328a632bb69c
Author: Nick Clifton <nickc@redhat.com>
Date:   Thu Sep 22 14:29:49 2016 +0100

    Report failed attempts to locate DT_NEEDED files when --verbose is in effect.
    
    	* emultempl/elf32.em (_try_needed): In verbose mode, report failed
    	attempts to find a needed library.

Diff:
---
 ld/ChangeLog          | 5 +++++
 ld/emultempl/elf32.em | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 0d900f8..0966116 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-22  Nick Clifton  <nickc@redhat.com>
+
+	* emultempl/elf32.em (_try_needed): In verbose mode, report failed
+	attempts to find a needed library.
+
 2016-09-21  Richard Sandiford  <richard.sandiford@arm.com>
 
 	* testsuite/ld-aarch64/emit-relocs-28.d: Expect spaces after ","
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em
index 2153bf9..8461b1d 100644
--- a/ld/emultempl/elf32.em
+++ b/ld/emultempl/elf32.em
@@ -337,7 +337,11 @@ gld${EMULATION_NAME}_try_needed (struct dt_needed *needed,
 
   abfd = bfd_openr (name, bfd_get_target (link_info.output_bfd));
   if (abfd == NULL)
-    return FALSE;
+    {
+      if (verbose)
+	info_msg (_("attempt to open %s failed\n"), name);
+      return FALSE;
+    }
 
   /* Linker needs to decompress sections.  */
   abfd->flags |= BFD_DECOMPRESS;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]