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))
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"
}
Author And Source
この問題について(M1 MacのVSCodeでC++のデバッグが出来なかった時のメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/ha_227/items/e1d7ad107f038a16a14c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .