diff options
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -121,7 +121,7 @@ using RequireLongest = gdb::Requires<gdb::Or<std::is_same<T, LONGEST>, extern int dbx_commands; /* * System root path, used to find libraries etc. */ -extern char *gdb_sysroot; +extern std::string gdb_sysroot; /* * GDB datadir, used to store data files. */ extern std::string gdb_datadir; @@ -131,7 +131,7 @@ extern std::string gdb_datadir; extern std::string python_libdir; /* * Search path for separate debug files. */ -extern char *debug_file_directory; +extern std::string debug_file_directory; /* GDB's SIGINT handler basically sets a flag; code that might take a long time before it gets back to the event loop, and which ought to |