-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add lldb engine to attach on SSH #1166
Conversation
"AlwaysLoadLocal"=dword:00000001 | ||
; "CallStackBP"=dword:00000001 | ||
; "ConditionalBP"=dword:00000001 | ||
"DataBP"=dword:00000001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"DataBP"=dword:00000001 | |
"DataBP"=dword:00000000 |
BreakWatch
is not implemented for lldb
.
throw new NotImplementedException(); |
; "SuspendThread"=dword:00000001 | ||
"CLSID"="{0fc2f352-2fc1-4f80-8736-51cd1ab28f16}" | ||
"GlobalVisualizersDirectory"="$PackageFolder$" | ||
"BreakWhenValueChanges"=dword:00000001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"BreakWhenValueChanges"=dword:00000001 | |
"BreakWhenValueChanges"=dword:00000000 |
Part of Data Breakpoints
"CLSID"="{0fc2f352-2fc1-4f80-8736-51cd1ab28f16}" | ||
"GlobalVisualizersDirectory"="$PackageFolder$" | ||
"BreakWhenValueChanges"=dword:00000001 | ||
"DataBPAsString"=dword:00000001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"DataBPAsString"=dword:00000001 | |
"DataBPAsString"=dword:00000000 |
Part of Data Breakpoints
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM
@@ -62,7 62,7 @@ protected override void OnOutputReceived(object sender, string e) | |||
|
|||
if (_startCommand != null) | |||
{ | |||
if (line.EndsWith(_startCommand, StringComparison.Ordinal)) | |||
if (line.Contains(_startCommand)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this wind up coming back as? Might be worth a comment.
No description provided.