Skip to content
Snippets Groups Projects
Commit 7b462aa0 authored by hjk's avatar hjk
Browse files

Debugger: Startup fixes for LLDB


On Mac, don't ignore the 'attach' stop, as it causes trouble
in the Terminal case. So a terminal start needs extra
'continues' but doesn't crash LLDB anymore.

Change-Id: Iaa72e3f5cfc02d8cd1841fa57e0633109645da31
Reviewed-by: default avatarChristian Stenger <christian.stenger@theqtcompany.com>
parent 7789201a
No related branches found
No related tags found
No related merge requests found
...@@ -668,7 +668,9 @@ class Dumper(DumperBase): ...@@ -668,7 +668,9 @@ class Dumper(DumperBase):
self.remoteChannel_ = args.get('remoteChannel', '') self.remoteChannel_ = args.get('remoteChannel', '')
self.platform_ = args.get('platform', '') self.platform_ = args.get('platform', '')
self.ignoreStops = 1 if self.useTerminal_ else 0 self.ignoreStops = 0
if self.useTerminal_ and platform.system() == "Linux":
self.ignoreStops = 2
if self.platform_: if self.platform_:
self.debugger.SetCurrentPlatform(self.platform_) self.debugger.SetCurrentPlatform(self.platform_)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment