diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-03-01 04:39:36 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-03-01 04:39:36 +0000 |
commit | c03374d554a6d5f326a0d356a2e0918961bc1cfb (patch) | |
tree | 5e78e840af0460012c9368fbc4189b90654e407d /gdb/Makefile.in | |
parent | 16fb4e2d3a147568e4e6b00c82adcf447ba10ffe (diff) | |
download | gdb-c03374d554a6d5f326a0d356a2e0918961bc1cfb.zip gdb-c03374d554a6d5f326a0d356a2e0918961bc1cfb.tar.gz gdb-c03374d554a6d5f326a0d356a2e0918961bc1cfb.tar.bz2 |
* Makefile.in (i386-nat.o): Update.
* amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
i386_use_watchpoints.
* i386-linux-nat.c (_initialize_i386_linux_nat): Call
i386_use_watchpoints.
* i386-nat.c (i386_stopped_data_address): Take two arguments.
(i386_stopped_by_watchpoint): Update call.
(i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
* config/i386/nm-i386.h: Conditionalize definitions on
! I386_WATCHPOINTS_IN_TARGET_VECTOR.
(i386_use_watchpoints): Declare.
(i386_stopped_data_address): Update.
* config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
* config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index ba64982..5b6f0d5 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2229,7 +2229,8 @@ i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \ $(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \ $(dwarf2_frame_h) $(gdb_string_h) $(i386_tdep_h) \ $(i386_linux_tdep_h) $(glibc_tdep_h) $(solib_svr4_h) $(symtab_h) -i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h) +i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h) \ + $(target_h) i386nbsd-nat.o: i386nbsd-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \ $(target_h) $(i386_tdep_h) $(i386bsd_nat_h) $(nbsd_nat_h) \ $(bsd_kvm_h) |