diff options
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index aaf6ac8..b54cdab 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2355,6 +2355,11 @@ process_event_stop_test: code segments in shared libraries might be mapped in now. */ re_enable_breakpoints_in_shlibs (); + /* For PIE executables, we dont really know where the + breakpoints are going to be until we start up the + inferior. */ + re_enable_breakpoints_at_startup (); + /* If requested, stop when the dynamic linker notifies gdb of events. This allows the user to get control and place breakpoints in initializer routines for |