summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kdbg/gdbdriver.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/kdbg/gdbdriver.cpp b/kdbg/gdbdriver.cpp
index 6255df4..4135576 100644
--- a/kdbg/gdbdriver.cpp
+++ b/kdbg/gdbdriver.cpp
@@ -2073,7 +2073,8 @@ bool GdbDriver::parseChangeExecutable(const char* output, TQString& message)
strncmp(output, "Try: ", 5) == 0 ||
strncmp(output, "Using host libthread_db", 23) == 0 ||
strncmp(output, "(no debugging symbols found", 27) == 0 ||
- strncmp(output, "(No debugging symbols found", 27) == 0)
+ strncmp(output, "(No debugging symbols found", 27) == 0 ||
+ strncmp(output, "warning: Loadable section", 25) == 0)
{
// this line is good, go to the next one
const char* end = strchr(output, '\n');