diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/symfile.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 53d6a23..9a486f4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2006-06-13 Daniel Jacobowitz <dan@codesourcery.com> + + * symfile.c (load_command): Check for a changed executable before + "load". + 2006-06-13 Fred Fish <fnf@specifix.com> * mips-tdep.c (mips_find_long_section): New function. diff --git a/gdb/symfile.c b/gdb/symfile.c index 59cd3dc..7dbbb7b 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -1500,6 +1500,11 @@ load_command (char *arg, int from_tty) } } + /* The user might be reloading because the binary has changed. Take + this opportunity to check. */ + reopen_exec_file (); + reread_symbols (); + target_load (arg, from_tty); /* After re-loading the executable, we don't really know which |