Prompt the user to file bug reports for internal errors and warnings.

2014-05-27  Gary Benson  <gbenson@redhat.com>

	* utils.c (internal_vproblem): Prompt for a bug report.
This commit is contained in:
Gary Benson 2014-05-27 15:30:58 +01:00
parent 92c48fc5e7
commit add6c04d82
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-05-27 Gary Benson <gbenson@redhat.com>
* utils.c (internal_vproblem): Prompt for a bug report.
2014-05-26 Andy Wingo <wingo@igalia.com>
* guile/scm-arch.c (arscm_mark_arch_smob):

View File

@ -746,6 +746,12 @@ internal_vproblem (struct internal_problem *problem,
else
internal_error (__FILE__, __LINE__, _("bad switch"));
fputs_unfiltered (_("\nThis is a bug, please report it."), gdb_stderr);
if (REPORT_BUGS_TO[0])
fprintf_unfiltered (gdb_stderr, _(" For instructions, see:\n%s."),
REPORT_BUGS_TO);
fputs_unfiltered ("\n\n", gdb_stderr);
if (problem->should_dump_core == internal_problem_ask)
{
if (!can_dump_core (reason))