前提・実現したいこと
VSCodeでC++コードをデバッグ(F5)したいが、
下記エラーが出て自力では解決できず困っています。
ご意見いただけますと幸いです。
発生している問題・エラーメッセージ
ビルドはできるが、下記エラーが出てデバッグできない
ERROR: Unable to start debugging. Unexpected LLDB output from command "-exec-run". process exited with status -1 (attach failed ((os/kern) invalid argument))
該当のソースコード
C++
1#include <iostream> 2 3using namespace std; 4 5int main(){ 6 cout << "hello world" << endl; 7}
- tasks.json
"version": "2.0.0", "tasks": [ { "type": "shell", "label": "clang++ build active file", "command": "/usr/bin/clang++", "args": [ "-std=c++17", "-stdlib=libc++", "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": ["$gcc"], "group": { "kind": "build", "isDefault": true } } ] }
- launch.json
"version": "0.2.0", "configurations": [ { "name": "my clang++ - Build and debug active file", "type": "cppdbg", "request": "launch", "program": "${fileDirname}/${fileBasenameNoExtension}", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, "MIMode": "lldb", "preLaunchTask": "clang++ build active file", "logging": { "trace":true, "traceResponse":true, "engineLogging": true } } ] }
試したこと
Terminalからlldbコマンドでのデバッグは可能でした。
(lldb) run Process 14121 launched: '/Users/taka/c++/project/3/1' (arm64) Process 14121 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x000000010000306c 1`main at 1.cpp:6:10 3 using namespace std; 4 5 int main(){ -> 6 cout << "hello world" << endl; 7 } Target 0: (1) stopped.
補足情報(FW/ツールのバージョンなど)
OS and Version: macOS Big Sur Version 11.3.1
VS Code version: 1.56.0
C/C++ Extension Version: 1.3.1
回答1件
あなたの回答
tips
プレビュー