VS code 安装插件 lldb 调试 CPP 程序
Dionysen

VS code 安装插件 CodeLLDB 时,需要下载一个包,vadimcn/codelldb,即使有代理,也难以自动完成。

可以手动下载Release下的对应架构的vsix包,然后命令行安装:

code --install-extension codelldb-x86_64-linux.vsix

然后编辑一个launch.json

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/path/to/your-debug-program", // 要制定需要debug的程序
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

加上断点即可调试。

显示评论