summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-09-25 08:45:20 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2015-09-25 07:12:30 +0000
commitf229f0dbe51be6a8b0c4fb0a1948bde935f7b423 (patch)
treea502d69751f33ab4d8684c2f3197f70b43aa2e02
parent2bdf18fb7bba100b097d5f291a64a0b0ff5c8756 (diff)
downloadqt-creator-f229f0dbe51be6a8b0c4fb0a1948bde935f7b423.tar.gz
Debugger: Disable CLI use of gdbbridge.py
The detection seems to go wrong in some cases on RHEL which are not reproducible locally. Since the feature is not important for Qt Creator's own use, disabling is safer than attempting to guess better. Change-Id: I95fd56985d61b604a285e7573f8775b902bcc68c Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--share/qtcreator/debugger/gdbbridge.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py
index fb45f2ce86..305dae2bf9 100644
--- a/share/qtcreator/debugger/gdbbridge.py
+++ b/share/qtcreator/debugger/gdbbridge.py
@@ -1788,11 +1788,11 @@ class CliDumper(Dumper):
return self.output
# Global instance.
-if gdb.parameter('height') is None:
- theDumper = Dumper()
-else:
- import codecs
- theDumper = CliDumper()
+#if gdb.parameter('height') is None:
+theDumper = Dumper()
+#else:
+# import codecs
+# theDumper = CliDumper()
######################################################################
#