From fb4ec44e0d7f4745a480ab81994ee2965ea8bcfb Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 31 Oct 2013 11:30:08 +0000 Subject: [PATCH] * nm.c (display_rel_file): Treat bfd_error_no_symbols as non-fatal. --- binutils/ChangeLog | 5 +++++ binutils/nm.c | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0e763d8d75b..a8ddd22f79b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2013-10-31 Nick Clifton + + * nm.c (display_rel_file): Treat bfd_error_no_symbols as + non-fatal. + 2013-10-12 H.J. Lu * dwarf.c (display_debug_frames): Pass offset_size to diff --git a/binutils/nm.c b/binutils/nm.c index 5c325201f29..9b6648eb71f 100644 --- a/binutils/nm.c +++ b/binutils/nm.c @@ -1010,7 +1010,15 @@ display_rel_file (bfd *abfd, bfd *archive_bfd) symcount = bfd_read_minisymbols (abfd, dynamic, &minisyms, &size); if (symcount < 0) - bfd_fatal (bfd_get_filename (abfd)); + { + if (dynamic && bfd_get_error () == bfd_error_no_symbols) + { + non_fatal (_("%s: no symbols"), bfd_get_filename (abfd)); + return; + } + + bfd_fatal (bfd_get_filename (abfd)); + } if (symcount == 0) { -- 2.47.3