M1 MacのVSCodeでC++のデバッグが出来なかった時のメモ


怒られた

Warning: Debuggee TargetArchitecture not detected, assuming x86_64.
ERROR: Unable to start debugging. Unexpected LLDB output from command "-exec-run". process exited with status -1 (attach failed ((os/kern) invalid argument))

怒られた時のtasks.jsonとlaunch.jsonを一応

cppdbgがArm系だとだめっぽい(?)

解決策

CodeLLDBをインストール

launch.jsonを修正

"type": cppdbg"type": lldbに書き換え

launch.json
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "clang++ - アクティブ ファイルのビルドとデバッグ",
            // "type": "cppdbg",
            "type": "lldb",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "lldb",
            "preLaunchTask": "C/C++: clang++ アクティブなファイルのビルド"
        }
    ]
}

一応tasks.jsonも載せておきます.

tasks.json
{
    "tasks": [
        {
            "type": "cppbuild",
            "label": "C/C++: clang++ アクティブなファイルのビルド",
            "command": "/usr/bin/clang++",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "デバッガーによって生成されたタスク。"
        }
    ],
    "version": "2.0.0"
}