diff options
author | hjk <[email protected]> | 2013-11-27 16:10:14 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2014-01-06 15:41:16 +0100 |
commit | bad8a451a6dbeba13dde162006a7c6f5f5e33473 (patch) | |
tree | 4b7502b2071cb374b502707feae78a790fa623ff /src/plugins/debugger/debuggerplugin.cpp | |
parent | fd2e00f6e6098b69ae9af108e2ddcf5fbef60cf5 (diff) |
Debugger: Remove support for non-Python GDB
This affects mainly Apple's version of GDB. Mac users are advised to
use LLDB, or some recent build of FSF GDB.
Change-Id: I6a7fbb591e79f737e12d08b0e881e9e4d1d9660c
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 4ab37373c5b..b42a5a6eaa3 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2585,10 +2585,6 @@ static QString formatStartParameters(DebuggerStartParameters &sp) } str << "Sysroot: " << sp.sysRoot << '\n'; str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1String(":")) << '\n'; - str << "Dumper libraries: " << QDir::toNativeSeparators(sp.dumperLibrary); - foreach (const QString &dl, sp.dumperLibraryLocations) - str << ' ' << QDir::toNativeSeparators(dl); - str << '\n'; return rc; } |