You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/how-to-debug-a-hyperlight-guest.md
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -85,13 +85,24 @@ $ gdb
85
85
### Using VSCode to debug a Hyperlight guest
86
86
87
87
To replicate the above behavior using VSCode follow the below steps:
88
-
- install the `gdb` package on the host machine
89
-
- install the `C/C++` extension in VSCode to add debugging capabilities
88
+
- To use gdb:
89
+
1. install the `gdb` package on the host machine
90
+
2. install the [C/C++ Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack) extension in VSCode to add debugging capabilities
91
+
- To use lldb:
92
+
1. install `lldb` on the host machine
93
+
2. install the [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb) extension in VSCode to add debugging capabilities
90
94
- create a `.vscode/launch.json` file in the project directory with the below content:
0 commit comments