前提・実現したいこと
VScodeでC++の環境構築を行っています。
今、デバッグ環境の確認を行っているのですが、エラーが出てしまい、実行できません。どうすればデバッグが実行できるようになるでしょうか。
発生している問題・エラーメッセージ
F5を押して行うデバッグができません。
ERROR:Unable to start debugging. Unexpected GDB output from command "-exec-run".During startup program exited with code1 .
該当のソースコード c++
#include <bits/stdc++.h> using namespace std; int main(void) { int a, b; cin >> a >> b; if ((a * b) % 2 == 0) cout << "Even" << endl; else cout << "Odd" << endl; }
該当のソースコード launch.json
{ "version": "0.2.0", "configurations": [ { "name": "(gdb) Bash on Windows Launch", "type": "cppdbg", "request": "launch", "program": "${command:extension.vscode-wsl-workspaceFolder}/problem.exe", "args": [ "<", "${command:extension.vscode-wsl-workspaceFolder}/problem.in" ], "stopAtEntry": false, "cwd": "${command:extension.vscode-wsl-workspaceFolder}", "environment": [], "externalConsole": true, "pipeTransport": { "debuggerPath": "/usr/bin/gdb", "pipeProgram": "${env:windir}\system32\bash.exe", "pipeArgs": [ "-c" ], "pipeCwd": "/" }, "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "sourceFileMap": { "${command:extension.vscode-wsl-workspaceFolder}": "${workspaceFolder}" }, } ] }
該当のソースコード c_cpp_properties.json
{ "configurations": [ { "name": "WSL", "intelliSenseMode": "gcc-x64", "compilerPath": "/usr/bin/gcc", "includePath": [ "${workspaceFolder}/**" ], "defines": [], "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 }
該当のソースコード tasks.json
{ "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "options": { "shell": { "executable": "C:\Windows\System32\wsl.exe", } }, "command": "g++", "args": [ "-std=gnu++1y", "-g", "-O0", "-I/opt/boost/gcc/include", "-L/opt/boost/gcc/lib", "-o", "`wslpath", "'${workspaceFolder}\problem.exe'`", "`wslpath", "'${file}'`", ], "group": { "kind": "build", "isDefault": true } } ] }
試したこと
https://qiita.com/2019Shun/items/5ab290a4117a00e373b6
このサイトを参考に構築しました。
補足情報(FW/ツールのバージョンなど)
Windows 10
Visual Studio Code バージョン1.24.1
Ubuntu 18.04 LTS
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。