Каждый раз, когда я пытаюсь запустить задачу сборки, я не вижу ничего, кроме The terminal process terminated with exit code: 1
, как я могу настроить VSCode, чтобы я мог видеть выходные данные компилятора?
Ниже приведен мой файл задачи и то, что яполучил от запуска задачу сборки:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "C:/Program Files (x86)/Dev-Cpp/MinGW32/bin/g++",
"args": [
"-g",
"mysockets.cpp"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true
},
"problemMatcher": "$gcc",
},
]
}