web-dev-qa-db-ja.com

デバッグを開始できません:midebuggerpathの値が無効です

私は最近vscodeの作業を始めました。 Cコードをデバッグしたいと思いました。しかし、私がデバッガを起動している瞬間:デバッグを開始できません。 midebuggerpathの値が無効です。

GDBがWSLにインストールされています。それは道です/ usr/bin/gdbです。私はMidebuggerPathのlaunch.jsonに同じパスをコピーしました。

これが私の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": "(gdb) Launch",
        "type": "cppdbg",
        "request": "launch",
        "program": "${workspaceFolder}/bin/main",
        "args": [],
        "stopAtEntry": false,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "externalConsole": true,
        "MIMode": "gdb",
        "miDebuggerPath": "/usr/bin/gdb",
        "setupCommands": [
            {
                "description": "Enable pretty-printing for gdb",
                "text": "-enable-pretty-printing",
                "ignoreFailures": true
            }
        ]
    }
]
 _

}

それはエラーを投げるべきではありません、そして私は私のデバッガを起動することができます。

12
Nidhi Khanna

これを試してもらえますか:

_Sudo apt install binfmt-support
_

私はvcxsrvを使用しています、そしてこれはchromeとGNU c ++を含むすべての私のインストールの問題を修正しました。

0
user5498548