diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-07-17 08:29:26 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-07-20 05:53:31 -0700 |
commit | 7ac018954bd9c2d964204a451ecabdd7d8a11945 (patch) | |
tree | 86b533dd48bec9fa2eae73d7f4d2c885e313929c /gas | |
parent | f2d7e0f45023ef1b469c627aff02ead3697b1240 (diff) | |
download | gdb-7ac018954bd9c2d964204a451ecabdd7d8a11945.zip gdb-7ac018954bd9c2d964204a451ecabdd7d8a11945.tar.gz gdb-7ac018954bd9c2d964204a451ecabdd7d8a11945.tar.bz2 |
Make binutils abort message GDB friendly
We used to generate abort messages like:
internal error, aborting at .../bfd/elf64-x86-64.c line 1554 in elf_x86_64_check_relocs
We can't cut and paste "file line ???" to GDB. This patch changes those
abort messages to
internal error, aborting at .../bfd/elf64-x86-64.c:1554 in elf_x86_64_check_relocs
so that we can cut and paste "file:???" to GDB.
bfd/
* bfd.c (_bfd_abort): Replace " line " with ":" in output
message.
gas/
* messages.c (as_assert): Replace " line " with ":" in output
message.
(as_abort): Likewise.
ld/
* ldmisc.c (ld_abort): Replace " line " with ":" in output
message.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/messages.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/messages.c b/gas/messages.c index c1743fb..890e908 100644 --- a/gas/messages.c +++ b/gas/messages.c @@ -295,10 +295,10 @@ as_assert (const char *file, int line, const char *fn) as_show_where (); fprintf (stderr, _("Internal error!\n")); if (fn) - fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"), + fprintf (stderr, _("Assertion failure in %s at %s:%d.\n"), fn, file, line); else - fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line); + fprintf (stderr, _("Assertion failure at %s:%d.\n"), file, line); fprintf (stderr, _("Please report this bug.\n")); xexit (EXIT_FAILURE); } @@ -311,10 +311,10 @@ as_abort (const char *file, int line, const char *fn) { as_show_where (); if (fn) - fprintf (stderr, _("Internal error, aborting at %s line %d in %s\n"), + fprintf (stderr, _("Internal error, aborting at %s:%d in %s\n"), file, line, fn); else - fprintf (stderr, _("Internal error, aborting at %s line %d\n"), + fprintf (stderr, _("Internal error, aborting at %s:%d\n"), file, line); fprintf (stderr, _("Please report this bug.\n")); xexit (EXIT_FAILURE); |