Skip to content

Commit 5739661

Browse files
authored
Add lldb engine to attach on SSH (#1166)
* Add lldb engine to attach on SSH * No data breakpoints * add comment
1 parent 6951239 commit 5739661

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

src/MIDebugEngine/AD7.Impl/AD7Engine.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,12 @@ private LaunchOptions CreateAttachLaunchOptions(uint processId, IDebugPort2 port
270270
{
271271
miMode = MIMode.Gdb;
272272
}
273+
else if (_engineGuid == EngineConstants.LldbEngine)
274+
{
275+
miMode = MIMode.Lldb;
276+
}
273277
else
274278
{
275-
// TODO: LLDB support
276279
throw new NotImplementedException();
277280
}
278281

src/MIDebugEngine/AD7.Impl/EngineConstants.cs

+2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ static public class EngineConstants
1616
public static readonly Guid EngineId = new Guid("{ea6637c6-17df-45b5-a183-0951c54243bc}");
1717

1818
public static readonly Guid GdbEngine = new Guid("{91744D97-430F-42C1-9779-A5813EBD6AB2}");
19+
20+
public static readonly Guid LldbEngine = new Guid("{5D630903-189D-4837-9785-699B05BEC2A9}");
1921
}
2022
}

src/MIDebugEngine/Microsoft.MIDebugEngine.pkgdef

+31
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,37 @@
5555
; WSL Port supplier
5656
"2"="{267B1341-AC92-44DC-94DF-2EE4205DD17E}"
5757

58+
; Registration to use lldb with the port suppliers
59+
[$RootKey$\AD7Metrics\Engine\{5D630903-189D-4837-9785-699B05BEC2A9}]
60+
@="MI Debug Engine - lldb"
61+
"Attach"=dword:00000001
62+
; "AddressBP"=dword:00000001
63+
"AlwaysLoadLocal"=dword:00000001
64+
; "CallStackBP"=dword:00000001
65+
; "ConditionalBP"=dword:00000001
66+
"DataBP"=dword:00000000
67+
"Disassembly"=dword:00000001
68+
"EnginePriority"=dword:00000050
69+
"Exceptions"=dword:00000001
70+
; "FunctionBP"=dword:00000001
71+
; "HitCountBP"=dword:00000000
72+
; "JustMyCodeStepping"=dword:00000001
73+
"Name"="Native (LLDB)"
74+
"SetNextStatement"=dword:00000001
75+
; "SuspendThread"=dword:00000001
76+
"CLSID"="{0fc2f352-2fc1-4f80-8736-51cd1ab28f16}"
77+
"GlobalVisualizersDirectory"="$PackageFolder$"
78+
"BreakWhenValueChanges"=dword:00000000
79+
"DataBPAsString"=dword:00000000
80+
81+
[$RootKey$\AD7Metrics\Engine\{5D630903-189D-4837-9785-699B05BEC2A9}\PortSupplier]
82+
; SSH Port Supplier
83+
"0"="{3FDDF14E-E758-4695-BE0C-7509920432C9}"
84+
85+
[$RootKey$\AD7Metrics\Engine\{5D630903-189D-4837-9785-699B05BEC2A9}\IncompatibleList]
86+
"MI Debug Engine - gdb"="{91744D97-430F-42C1-9779-A5813EBD6AB2}"
87+
"vsdbg"="{EF9CD3BB-2C0E-41AD-B54C-63006BC09D19}"
88+
5889
[$RootKey$\OpenFolder\Settings\VSWorkspaceSettings\{EA6637C6-17DF-45B5-A183-0951C54243BC}]
5990
@="$PackageFolder$\OpenFolderSchema.json"
6091

src/SSHDebugPS/AD7/AD7UnixAsyncShellCommand.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ protected override void OnOutputReceived(object sender, string e)
6262

6363
if (_startCommand != null)
6464
{
65-
if (line.EndsWith(_startCommand, StringComparison.Ordinal))
65+
if (line.Contains(_startCommand))
6666
{
67-
// When logged in as root, shell sends a copy of stdin to stdout.
67+
// When logged in as root, shell sends a copy of stdin to stdout. On MacOS
68+
// trailing control characters appear on the line.
6869
// This ignores the shell command that was used to launch the debugger.
6970
continue;
7071
}

0 commit comments

Comments
 (0)