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/Debugging.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,8 +80,8 @@ This plugin comes with an LLDB build that supports many architectures including
80
80
Arm and is the option most people should choose.
81
81
82
82
If you are developing the toolchain itself and making changes to LLDB, you can
83
-
manually install the `lldb-vscode` plugin by following the instructions
84
-
[here](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-vscode#installation-for-visual-studio-code). Using the `lldb-vscode` binary
83
+
manually install the `lldb-dap` plugin by following the instructions
84
+
[here](https://github.com/llvm/llvm-project/tree/main/lldb/tools/lldb-dap#installation-for-visual-studio-code). Using the `lldb-dap` binary
85
85
from this toolchain.
86
86
87
87
I will talk about both plugins here as they share a lot of the same
@@ -150,13 +150,13 @@ This is the content of `launch.json`:
150
150
"postDebugTask": "stop-mgba"
151
151
},
152
152
{
153
-
"name": "mgba-lldb-vscode",
154
-
"type": "lldb-vscode",
155
-
"request": "launch",
153
+
"name": "mgba-lldb-dap",
154
+
"type": "lldb-dap",
155
+
"request": "attach",
156
156
"program": "${workspaceFolder}/test.elf",
157
157
"preLaunchTask": "run-mgba",
158
158
"stopOnEntry": true,
159
-
"launchCommands": ["gdb-remote 2345"],
159
+
"attachCommands": ["gdb-remote 2345"],
160
160
"postDebugTask": "stop-mgba"
161
161
}
162
162
]
@@ -182,4 +182,4 @@ name given to the interrupt signal you the user just sent.
182
182
# References
183
183
184
184
*[CodeLLDB user manual](https://github.com/vadimcn/codelldb/blob/master/MANUAL.md)
0 commit comments