如何在 Visual Studio 代码中为 C++ 启用漂亮的打印?
How to enable pretty printing for C++ in Visual Studio Code?
我正在尝试使用 MinGW GDB python 调试器在 Visual Studio 代码中为 C++ 启用漂亮的打印。
我按照 “这是为使用 Eclipse CDT”的 MinGW 用户 标题下描述的 here 执行了步骤,但是当我尝试启动调试器时使用 "externalConsole": true
我在调试控制台中得到以下日志输出:
1: (189) LaunchOptions{"name":"g++.exe - Build and debug active file","type":"cppdbg","request":"launch","program":"c:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\movie.exe","args":[],"stopAtEntry":false,"cwd":"C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges","environment":[],"externalConsole":true,"MIMode":"gdb","miDebuggerPath":"C:\MinGW\bin\gdb-python27.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"preLaunchTask":"C/C++: g++.exe build active file","logging":{"engineLogging":true},"__configurationTarget":5,"__sessionId":"c62bc9d3-8c55-4dfb-b413-c91d22f3232e"}
1: (315) Starting: "C:\MinGW\bin\gdb-python27.exe" --interpreter=mi -x "C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\.gdbinit"
1: (328) DebuggerPid=11376
1: (391) "C:\MinGW\bin\gdb-python27.exe" exited with code -1073741515 (0xC0000135).
Starting: "C:\MinGW\bin\gdb-python27.exe" --interpreter=mi -x "C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\.gdbinit"
"C:\MinGW\bin\gdb-python27.exe" exited with code -1073741515 (0xC0000135).
1: (407) Send Event AD7MessageEvent
1: (408) <-logout
我尝试设置 "externalConsole": false
,我将此输出发送到调试控制台:
1: (123) LaunchOptions{"name":"g++.exe - Build and debug active file","type":"cppdbg","request":"launch","program":"c:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\movie.exe","args":[],"stopAtEntry":false,"cwd":"C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges","environment":[],"externalConsole":false,"MIMode":"gdb","miDebuggerPath":"C:\MinGW\bin\gdb-python27.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"preLaunchTask":"C/C++: g++.exe build active file","logging":{"engineLogging":true},"__configurationTarget":5,"__sessionId":"cfbd8955-0807-495d-8bfa-e06052797523"}
1: (225) Wait for connection completion.
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++.exe - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb-python27.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file",
"logging": { "engineLogging": true }
}
]
}
tasks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\MinGW\bin\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\MinGW\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}
此外,运行 gdb-python27 可执行文件单独似乎没有做任何事情(不确定这是否是预期的行为)
C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges>C:\MinGW\bin\gdb-python27.exe
C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges>
有没有人以前遇到过这种情况或知道该怎么办?
解决方案
已解决问题:
- 从这里卸载 mingw 并安装 mingw64 link
- 修改
launch.json
和 command
中的 miDebuggerPath
和 tasks.json
中的 cwd
以匹配新文件位置
- 正在将新的 mingw64 bin 位置添加到 PATH
- 修改
c_cpp_properties.json
中的 includePath
和 compilerPath
以匹配新文件位置
我遇到了同样的问题。我的环境:
- Local/Remote: Ubuntu 18.04 Desktop/Server
- VSCode 1.60 + vscode_remote
- g++ 与 gdb 8
设置 -enable-pretty-printing
根本不起作用:
以下解决方案适用于我:
- 检查您的 gdb 是否支持 gdb 的 python 模块提供的 'pretty-print':
readelf -d $(which gdb) | grep python
。
如果没有列出任何内容,很遗憾,您必须从源代码重建 gdb。
- 在重建 gdb 之前必须安装一些要求:
sudo apt install python libpython-dev # Python 2.7 and it's PythonLib will be installed in Ubuntu 18.04
- 从 here 下载最新的 gdb 并解压。
- 使用以下配置执行构建和安装:
./configure --with-python
make all -j16
sudo make install -j16
- 完成!
Ps。
如果您使用的是 conda,您的 Python 环境可能不适合 GDB。调试前停用您的 conda:
conda deactivate
确保 gdb 加载 Python 的正确版本。
我正在尝试使用 MinGW GDB python 调试器在 Visual Studio 代码中为 C++ 启用漂亮的打印。
我按照 “这是为使用 Eclipse CDT”的 MinGW 用户 标题下描述的 here 执行了步骤,但是当我尝试启动调试器时使用 "externalConsole": true
我在调试控制台中得到以下日志输出:
1: (189) LaunchOptions{"name":"g++.exe - Build and debug active file","type":"cppdbg","request":"launch","program":"c:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\movie.exe","args":[],"stopAtEntry":false,"cwd":"C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges","environment":[],"externalConsole":true,"MIMode":"gdb","miDebuggerPath":"C:\MinGW\bin\gdb-python27.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"preLaunchTask":"C/C++: g++.exe build active file","logging":{"engineLogging":true},"__configurationTarget":5,"__sessionId":"c62bc9d3-8c55-4dfb-b413-c91d22f3232e"}
1: (315) Starting: "C:\MinGW\bin\gdb-python27.exe" --interpreter=mi -x "C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\.gdbinit"
1: (328) DebuggerPid=11376
1: (391) "C:\MinGW\bin\gdb-python27.exe" exited with code -1073741515 (0xC0000135).
Starting: "C:\MinGW\bin\gdb-python27.exe" --interpreter=mi -x "C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\.gdbinit"
"C:\MinGW\bin\gdb-python27.exe" exited with code -1073741515 (0xC0000135).
1: (407) Send Event AD7MessageEvent
1: (408) <-logout
我尝试设置 "externalConsole": false
,我将此输出发送到调试控制台:
1: (123) LaunchOptions{"name":"g++.exe - Build and debug active file","type":"cppdbg","request":"launch","program":"c:\Users\Ben Wilson\Documents\Scripts\CodingChallenges\movie.exe","args":[],"stopAtEntry":false,"cwd":"C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges","environment":[],"externalConsole":false,"MIMode":"gdb","miDebuggerPath":"C:\MinGW\bin\gdb-python27.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"preLaunchTask":"C/C++: g++.exe build active file","logging":{"engineLogging":true},"__configurationTarget":5,"__sessionId":"cfbd8955-0807-495d-8bfa-e06052797523"}
1: (225) Wait for connection completion.
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++.exe - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb-python27.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file",
"logging": { "engineLogging": true }
}
]
}
tasks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\MinGW\bin\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\MinGW\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}
此外,运行 gdb-python27 可执行文件单独似乎没有做任何事情(不确定这是否是预期的行为)
C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges>C:\MinGW\bin\gdb-python27.exe
C:\Users\Ben Wilson\Documents\Scripts\CodingChallenges>
有没有人以前遇到过这种情况或知道该怎么办?
解决方案
已解决问题:
- 从这里卸载 mingw 并安装 mingw64 link
- 修改
launch.json
和command
中的miDebuggerPath
和tasks.json
中的cwd
以匹配新文件位置 - 正在将新的 mingw64 bin 位置添加到 PATH
- 修改
c_cpp_properties.json
中的includePath
和compilerPath
以匹配新文件位置
我遇到了同样的问题。我的环境:
- Local/Remote: Ubuntu 18.04 Desktop/Server
- VSCode 1.60 + vscode_remote
- g++ 与 gdb 8
设置 -enable-pretty-printing
根本不起作用:
以下解决方案适用于我:
- 检查您的 gdb 是否支持 gdb 的 python 模块提供的 'pretty-print':
readelf -d $(which gdb) | grep python
。 如果没有列出任何内容,很遗憾,您必须从源代码重建 gdb。 - 在重建 gdb 之前必须安装一些要求:
sudo apt install python libpython-dev # Python 2.7 and it's PythonLib will be installed in Ubuntu 18.04
- 从 here 下载最新的 gdb 并解压。
- 使用以下配置执行构建和安装:
./configure --with-python make all -j16 sudo make install -j16
- 完成!
Ps。 如果您使用的是 conda,您的 Python 环境可能不适合 GDB。调试前停用您的 conda:
conda deactivate
确保 gdb 加载 Python 的正确版本。