summaryrefslogtreecommitdiff
path: root/share/qtcreator/debugger/gdbbridge.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/debugger/gdbbridge.py')
-rw-r--r--share/qtcreator/debugger/gdbbridge.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py
index 17719ac77b..16a11929db 100644
--- a/share/qtcreator/debugger/gdbbridge.py
+++ b/share/qtcreator/debugger/gdbbridge.py
@@ -1054,6 +1054,11 @@ class Dumper(DumperBase):
cmd = 'set variable (%s)=%s' % (expr, value)
gdb.execute(cmd)
+ def appendSolibSearchPath(self, args):
+ new = list(map(self.hexdecode, args['path']))
+ old = [gdb.parameter('solib-search-path')]
+ gdb.execute('set solib-search-path %s' % args['separator'].join(old + new))
+
def watchPoint(self, args):
self.reportToken(args)
ns = self.qtNamespace()