vscodeでc++のデバックをしたいがバグが起きる。
前提
vscodeでc++のデバックをしようとするとエラーメッセージが出てくる。
発生している問題・エラーメッセージ
デバックをしようとするとunable to start debugging unable to establish a connection to GDB debug output may contain more information visual studio codeとでてくる デバックコンソールを見ても何も表示されていない。
該当のソースコード
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "launch_cpp",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/main.cpp",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb.exe",
"setupCommands": [
{
"description": "gdb の再フォーマットを有効にする",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
試したこと
midebuggerpathを C:\MinGW\binにしたりする。
mingw再インストール
補足情報(FW/ツールのバージョンなど)
cmdでgdb --version
GNU gdb (GDB) 7.6.1
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "mingw32".
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/.
mingw32-base-binと
mingw32-gcc-objc-binをインストールしている
windows11
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。