diff options
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 5d8d3ce..59318b1 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -37,6 +37,7 @@ #include "gdbcore.h" #include "gdbthread.h" #include "regcache.h" +#include "symfile.h" #ifndef O_BINARY #define O_BINARY 0 @@ -222,7 +223,7 @@ core_close_cleanup (void *ignore) static int solib_add_stub (PTR from_ttyp) { - SOLIB_ADD (NULL, *(int *) from_ttyp, ¤t_target); + SOLIB_ADD (NULL, *(int *) from_ttyp, ¤t_target, auto_solib_add); re_enable_breakpoints_in_shlibs (); return 0; } |