diff options
| author | hjk <qtc-committer@nokia.com> | 2009-04-01 15:44:34 +0200 |
|---|---|---|
| committer | hjk <qtc-committer@nokia.com> | 2009-04-01 16:50:21 +0200 |
| commit | e4bd6c55c4b09de69ab91d6e396d8228b111c82c (patch) | |
| tree | 40bdd33cb83efc99c5b921d0875da815987bfdca /src/plugins/debugger/gdbengine.cpp | |
| parent | fbb4288eaef3638891dfac006c1aa0e6a3678ff8 (diff) | |
| download | qt-creator-e4bd6c55c4b09de69ab91d6e396d8228b111c82c.tar.gz | |
debugger: don't consider archer's "library-loaded" as a reason for a
warning
Diffstat (limited to 'src/plugins/debugger/gdbengine.cpp')
| -rw-r--r-- | src/plugins/debugger/gdbengine.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp index c206831ad0..393543cd86 100644 --- a/src/plugins/debugger/gdbengine.cpp +++ b/src/plugins/debugger/gdbengine.cpp @@ -389,6 +389,11 @@ void GdbEngine::handleResponse(const QByteArray &buff) handleAsyncOutput(record); } else if (asyncClass == "running") { // Archer has 'thread-id="all"' here + } else if (asyncClass == "library-loaded") { + // Archer has 'id="/usr/lib/libdrm.so.2", + // target-name="/usr/lib/libdrm.so.2", + // host-name="/usr/lib/libdrm.so.2", + // symbols-loaded="0"' #ifdef Q_OS_MAC } else if (asyncClass == "shlibs-updated") { // MAC announces updated libs |
