Microsoft for VSCode的C/c++扩展允许设置一个launch.json
文件,您可以设置如何调试和运行您的c++代码。默认情况下,它将lldb作为MacOS的调试器。
我想知道如何将gdb设置为调试器而不是lldb。
我试过了,它告诉我:
无法启动调试。GDB意外退出,退出码134 (0x86).
这是我的launch.json
文件的样子:
{
"version": "0.2.0",
"configurations": [
{
"name": "g++-9 - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"osx": {
"miDebuggerPath": "/usr/local/bin/gdb",
"MIMode": "gdb"
},
"preLaunchTask": "C/C++: g++-9 build active file"
}
]
}
确保有gdb安装。您可以使用:
brew install gdb
gdb二进制是认证的。因为:…现代达尔文核限制了假设的能力对另一个进程的控制(这里是为了调试它);因为这种能力对恶意软件来说是一个福音。为了说Taskgated授予访问gdb,后者必须配备属性中包含经过数字签名的元数据gdb二进制。
从:https://sourceware.org/gdb/wiki/PermissionsDarwin
按照以下说明创建证书:https://sourceware.org/gdb/wiki/PermissionsDarwin
这样做之后,按照这里的指示验证二进制文件。
然后试试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": [
{
"name": "g++ - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "C/C++: g++ build active file"
}
]
}