summaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-10-25 09:26:56 +0100
committerTom Tromey <tromey@sourceware.org>2013-10-25 14:03:01 +0000
commitbf26dcc6aea39b761ac7029413ab66329165ac1f (patch)
tree9e52c3b5047fdd3008b7bd7ae1b39b34bc90064a /binutils
parent9db0be606ef922ba2d2a7c80cb3817c5fa0469ee (diff)
downloadbinutils-gdb-bf26dcc6aea39b761ac7029413ab66329165ac1f.tar.gz
* nm.c (display_rel_file): Treat bfd_error_no_symbols as
non-fatal.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/nm.c10
2 files changed, 14 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index e2d53e0c98d..ae505262af9 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-24 Nick Clifton <nickc@redhat.com>
+
+ * nm.c (display_rel_file): Treat bfd_error_no_symbols as
+ non-fatal.
+
2013-10-14 Chao-ying Fu <Chao-ying.Fu@imgtec.com>
* readelf.c (display_mips_gnu_attribute): Support Tag_GNU_MIPS_ABI_MSA.
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)
{