diff options
author | Tobias Nätterlund <[email protected]> | 2013-11-01 15:39:59 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2013-11-04 16:35:48 +0100 |
commit | d005efd524f2b5eb9e6b70f43468d77d63205b98 (patch) | |
tree | bbd12bdfa123023dc4350006a42fa37aadfcb253 /src/plugins/debugger/debuggerplugin.cpp | |
parent | fe1cf36e1f1dfcfc7231bef84cd5e167f9058748 (diff) |
QNX: Fix debugging on QNX >6.5
The previous approach when debugging on pure QNX 6.5
no longer works with QNX version >6.5. Use proper way with
"set nto-executable" and "run" instead.
Change-Id: I00961236b416c42a0c81e29ea087de5ddd3a5f00
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 67953afcfca..cc42f45a3f7 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -2598,7 +2598,6 @@ static QString formatStartParameters(DebuggerStartParameters &sp) } str << "Sysroot: " << sp.sysRoot << '\n'; str << "Debug Source Location: " << sp.debugSourceLocation.join(QLatin1String(":")) << '\n'; - str << "Symbol file: " << sp.symbolFileName << '\n'; str << "Dumper libraries: " << QDir::toNativeSeparators(sp.dumperLibrary); foreach (const QString &dl, sp.dumperLibraryLocations) str << ' ' << QDir::toNativeSeparators(dl); |