.vscode/launch.json { "version": "0.2.0", "configurations": [ { "name": "(gdb) Attach", "type": "cppdbg", "request": "attach", "program": "xxx", "MIMode": "gdb", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", ...
GDB 远程调试 可以 vscode 不需要安装其他插件,直接通过本地 ssh 开启 gdb attach 远程调试。其中依赖的 plink.exe 可自行下载,唯一的缺(省...