This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH]: Clarify the warning displayed when you debug a core file for the wrong architecture.


Pushing one of the old patches from Daniel into FSF.

2002-08-30 Daniel Jacobowitz <drow@mvista.com>

* corelow.c (get_core_register_section): Clarify warning.

Index: gdb-6.3.90_20051109/gdb/corelow.c
===================================================================
--- gdb-6.3.90_20051109.orig/gdb/corelow.c 2005-07-04 13:29:10.000000000 +0000
+++ gdb-6.3.90_20051109/gdb/corelow.c 2005-11-09 23:23:54.000000000 +0000
@@ -462,7 +462,10 @@
if (! section)
{
if (required)
+ {
warning (_("Couldn't find %s registers in core file."), human_name);
+ warning (_("Core file may be for a different architecture.\n"));
+ }
return;
}



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]