* bfd.c (bfd_assert): Report bfd version.
authorAlan Modra <amodra@gmail.com>
Sat, 6 Oct 2001 07:40:44 +0000 (07:40 +0000)
committerAlan Modra <amodra@gmail.com>
Sat, 6 Oct 2001 07:40:44 +0000 (07:40 +0000)
(_bfd_abort): Likewise.

bfd/ChangeLog
bfd/bfd.c

index 2d18b6c83b944f90d94d99984bd69819548d7ff5..dc4a5d71e9fe1bf9dcca0f6348acd9d7f4999899 100644 (file)
@@ -1,5 +1,8 @@
 2001-10-06  Alan Modra  <amodra@bigpond.net.au>
 
+       * bfd.c (bfd_assert): Report bfd version.
+       (_bfd_abort): Likewise.
+
        * elflink.h (elf_link_input_bfd): Don't zero discarded link-once
        section sym values.  Instead replace any relocs against them with
        relocs against STN_UNDEF, which has a zero value.
index 0dd42893fb5e97de011527f3d85424b2d3bddb1c..b70139d524bdaa4cdfdcac9cddef95bdc1213d62 100644 (file)
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -697,7 +697,8 @@ bfd_assert (file, line)
      const char *file;
      int line;
 {
-  (*_bfd_error_handler) (_("bfd assertion fail %s:%d"), file, line);
+  (*_bfd_error_handler) (_("BFD %s assertion fail %s:%d"),
+                        BFD_VERSION_STRING, file, line);
 }
 
 /* A more or less friendly abort message.  In libbfd.h abort is
@@ -715,12 +716,12 @@ _bfd_abort (file, line, fn)
 {
   if (fn != NULL)
     (*_bfd_error_handler)
-      (_("BFD internal error, aborting at %s line %d in %s\n"),
-       file, line, fn);
+      (_("BFD %s internal error, aborting at %s line %d in %s\n"),
+       BFD_VERSION_STRING, file, line, fn);
   else
     (*_bfd_error_handler)
-      (_("BFD internal error, aborting at %s line %d\n"),
-       file, line);
+      (_("BFD %sinternal error, aborting at %s line %d\n"),
+       BFD_VERSION_STRING, file, line);
   (*_bfd_error_handler) (_("Please report this bug.\n"));
   xexit (EXIT_FAILURE);
 }