summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 19:59:11 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-09-22 19:59:11 +0000
commit3c608a850b8c35416d1dfef6875af62adf62f076 (patch)
tree9cc1a9d4620bb7526ed75e2b192ecfff043de4df /gdb
parent0d21ec3bc7edce96ad959d5e9fd2fd8bc0b8e307 (diff)
downloadgdb-3c608a850b8c35416d1dfef6875af62adf62f076.tar.gz
gdb/
* main.c: Include objfiles.h. (captured_main): New variable objfile. Call load_auto_scripts_for_objfile for ALL_OBJFILES.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/main.c6
2 files changed, 10 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d19c709916c..8505e8b4432 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
+ * main.c: Include objfiles.h.
+ (captured_main): New variable objfile. Call
+ load_auto_scripts_for_objfile for ALL_OBJFILES.
+
+2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
+
* dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
DW_TAG_constant.
diff --git a/gdb/main.c b/gdb/main.c
index bfd12135738..9bd36cf20b0 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -42,6 +42,7 @@
#include "source.h"
#include "cli/cli-cmds.h"
#include "python/python.h"
+#include "objfiles.h"
/* The selected interpreter. This will be used as a set command
variable, so it should always be malloc'ed - since
@@ -290,6 +291,7 @@ captured_main (void *data)
int i;
int save_auto_load;
+ struct objfile *objfile;
struct cleanup *pre_stat_chain = make_command_stats_cleanup (0);
@@ -875,8 +877,8 @@ Can't attach to process and specify a core file at the same time."));
We wait until now because it is common to add to the source search
path in local_gdbinit. */
gdbpy_global_auto_load = save_auto_load;
- if (symfile_objfile != NULL)
- load_auto_scripts_for_objfile (symfile_objfile);
+ ALL_OBJFILES (objfile)
+ load_auto_scripts_for_objfile (objfile);
for (i = 0; i < ncmd; i++)
{