Настройка vscode для разработки на c ++ не может включать путь - PullRequest
0 голосов
/ 04 апреля 2020

У меня есть настройка vscode для c ++. Я установил coderunner и, запустив простую программу hello world через run code, я получаю эту ошибку и ничего не получаю. Я сделал все, чтобы добавить путь включения в c_cpp_properties. json файл все еще получаю ошибку пути включения.

Редактировать Наконец исправлено путем переустановки Mingw.

Программа

#include<iostream>
using namespace std;

int main(){
    cout<<"Hello";
    return 0;
}

Ошибка


 [Running] cd "c:\Users\pk110\OneDrive\Documents\Programs\" && g++ s.cpp -o s && "c:\Users\pk110\OneDrive\Documents\Programs\"s

[Done] exited with code=1 in 0.068 seconds

[Running] cd "c:\Users\pk110\OneDrive\Documents\Programs\" && g++ s.cpp -o s && "c:\Users\pk110\OneDrive\Documents\Programs\"s

[Done] exited with code=1 in 0.065 seconds

c_cpp_properties. json файл

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "C:\\MinGW\\lib\\gcc\\mingw32\\9.2.0\\include\\c++"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "intelliSenseMode": "clang-x86",
            "compilerPath": "C:\\MinGW\\bin\\g++.exe"
        }
    ],
    "version": 4
}

задача. json файл

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "echo",
            "type": "shell",
            "command": "g++",
            "args" : [
                "-g", "s.cpp"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }

        }
    ]
} ```

C/C++ Extension setting


[![enter image description here][1]][1]

[![enter image description here][2]][2]
[![enter image description here][3]][3]


Error in vscode
[![enter image description here][4]][4]


  [1]: https://i.stack.imgur.com/OX0BB.png
  [2]: https://i.stack.imgur.com/WTDFI.png
  [3]: https://i.stack.imgur.com/Cbt3M.png
  [4]: https://i.stack.imgur.com/HesDo.png


Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...