diff options
author | Doug Evans <dje@google.com> | 2013-09-25 23:17:12 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-09-25 23:17:12 +0000 |
commit | 8fb8eb5ca4ca4c7a1410659a289e1a91c380832d (patch) | |
tree | f77f83bfe6fe0710e823d1dde50d463a4a3e51e1 /gdb/Makefile.in | |
parent | c256e171654791e456088ccb4c83d183650d8940 (diff) | |
download | binutils-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.zip binutils-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.tar.gz binutils-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.tar.bz2 |
New option "set debug symfile on".
* NEWS: Mention "set debug symfile".
* Makefile.in (SFILES): Add symfile-debug.c.
(COMMON_OBS): Add symfile-debug.o.
* elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
objfile's symbol functions.
* objfiles.h (objfile_set_sym_fns): Declare.
* symfile-debug.c: New file.
* symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
objfile's symbol functions.
(reread_symbols): Ditto.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3b0b5c7..6b8927a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -756,7 +756,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ serial.c ser-base.c ser-unix.c skip.c \ solib.c solib-target.c source.c \ stabsread.c stack.c probe.c stap-probe.c std-regs.c \ - symfile.c symfile-mem.c symmisc.c symtab.c \ + symfile.c symfile-debug.c symfile-mem.c symmisc.c symtab.c \ target.c target-descriptions.c target-memory.c \ thread.c top.c tracepoint.c \ trad-frame.c \ @@ -894,7 +894,8 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ findvar.o regcache.o cleanups.o \ charset.o continuations.o corelow.o disasm.o dummy-frame.o dfp.o \ source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \ - block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \ + block.o symtab.o psymtab.o symfile.o symfile-debug.o symmisc.o \ + linespec.o dictionary.o \ infcall.o \ infcmd.o infrun.o \ expprint.o environ.o stack.o thread.o \ |