試したこと
色んなサイトに書いてあったことを試したんですが、全部
ERROR
1Failed to load MI Debugger: Error: write EPIPE
と表示されます
jsonコード
launchjson
1{ 2 // IntelliSense を使用して利用可能な属性を学べます。 3 // 既存の属性の説明をホバーして表示します。 4 // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 { 8 "name": "Debug", 9 "type": "gdb", // GDBを使う場合はgdbを指定する 10 "request": "launch", 11 "target": "${workspaceRoot}/crack.exe", 12 "cwd": "${workspaceRoot}" 13 } 14 ] 15}
taskjson
1 2{ 3 "version": "2.0.0", 4 "tasks": [ 5 { 6 "label": "Debug Build", 7 "type": "process", 8 "command": "gcc", 9 "args": [ 10 "-g", 11 "-O0", 12 ".c", 13 "-omain.exe" 14 ], 15 "group": { 16 "kind": "build", 17 "isDefault": true 18 }, 19 20 "problemMatcher": "$gcc" 21 } 22 ] 23}
あなたの回答
tips
プレビュー