From f5771b1d96f844e0767a15b258b2de2d4cc52123 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Thu, 5 Mar 2015 10:24:58 +0000 Subject: Fix Windows/SPU/NTO/Lynx gdbserver builds I forgot to update these target_ops instances when I added these new hooks. I confirmed mingw32-w64 builds again at least. gdb/gdbserver/ChangeLog: 2015-03-05 Pedro Alves * lynx-low.c (lynx_target_ops): Install NULL hooks for stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint, stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint. * nto-low.c (nto_target_ops): Likewise. * spu-low.c (spu_target_ops): Likewise. * win32-low.c (win32_target_ops): Likewise. --- gdb/gdbserver/win32-low.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb/gdbserver/win32-low.c') diff --git a/gdb/gdbserver/win32-low.c b/gdb/gdbserver/win32-low.c index e3fb618..2b24c87 100644 --- a/gdb/gdbserver/win32-low.c +++ b/gdb/gdbserver/win32-low.c @@ -1807,6 +1807,10 @@ static struct target_ops win32_target_ops = { win32_supports_z_point_type, win32_insert_point, win32_remove_point, + NULL, /* stopped_by_sw_breakpoint */ + NULL, /* supports_stopped_by_sw_breakpoint */ + NULL, /* stopped_by_hw_breakpoint */ + NULL, /* supports_stopped_by_hw_breakpoint */ win32_stopped_by_watchpoint, win32_stopped_data_address, NULL, /* read_offsets */ -- cgit v1.1