From 91ba674db4be713709acf2baea81519cacd1f1ab Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 28 May 2013 11:15:01 +0200 Subject: [PATCH] Debugger: Remove workaround for gdb-7.1 bug See sourceware.org/bugzilla/show_bug.cgi?id=12023. The workaround can cause hickups in the output parser of Mac gdb, as the error message is scattered within regular output without any markup. Change-Id: I835133e390403a0f8f6aa573d6f9c63cf0784187 Reviewed-by: hjk --- src/plugins/debugger/gdb/gdbengine.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index b9ce9a083ab..7f7b1a7c6d1 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -4851,10 +4851,6 @@ void GdbEngine::startGdb(const QStringList &args) postCommand("set remotecache on", ConsoleCommand); //postCommand("set non-stop on", ConsoleCommand); - // Work around https://bugreports.qt-project.org/browse/QTCREATORBUG-2004 - postCommand("maintenance set internal-warning quit no", ConsoleCommand); - postCommand("maintenance set internal-error quit no", ConsoleCommand); - showMessage(_("THE FOLLOWING COMMAND CHECKS AVAILABLE FEATURES. " "AN ERROR IS EXPECTED.")); postCommand("disassemble 0 0", ConsoleCommand, CB(handleDisassemblerCheck));