Не могу собрать c ++ в Visual Studio - PullRequest
0 голосов
/ 09 ноября 2019

Кажется, что это , за исключением того, что я следовал за ним и все еще не могу заставить его работать в VS Code. Это каталог, который я использую:

C: \ Users \ EKI \ Desktop \ projects_cpp

В соответствии с инструкциями я помещаю файлы .json в \ project_cpp.vscode и .cppфайл в \ projects_cpp \ helloworld.

Мой файл .cpp:

#include <iostream>


using namespace std;

int main()
{
   cout << "Hello World";
}

Файлы .json находятся в следующем формате:

launch.json

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
      {
        "name": "(gdb) Launch",
        "type": "cppdbg",
        "request": "launch",
        "program": "${workspaceFolder}/helloworld.exe",
        "args": [],
        "stopAtEntry": true,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "externalConsole": true,
        "MIMode": "gdb",
        "miDebuggerPath": "C:\\mingw-w64\\x86_64-8.1.0-win32-seh-rt_v6-rev0\\mingw64\\bin\\gdb.exe",
        "setupCommands": [
          {
            "description": "Enable pretty-printing for gdb",
            "text": "-enable-pretty-printing",
            "ignoreFailures": true
          }
        ]
      }
    ]
  }

settings.json

{
    "files.associations": {
        "ostream": "cpp"
    }
}

tasks.json

{
    "version": "2.0.0",
    "tasks": [
      {
        "label": "build hello world",
        "type": "shell",
        "command": "g++",
        "args": [
          "-g",
          "${file}",
          "-o",
          "$${workspaceFolder}\\${fileBasenameNoExtension}",
          ],
        "group": {
          "kind": "build",
          "isDefault": true
        }
      }
    ]
  }

c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "compilerPath": "C:\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe",
            "cStandard": "c11",
            "cppStandard": "c++17",
            "intelliSenseMode": "gcc-x64"
        }
    ],
    "version": 4
}

Я пытался отключить доступ к управляемой папке, но все равно этоне работает.

Вот сообщение об ошибке

Выполнение задачи: g ++ -gc: \ Users \ EKI \ Desktop \ projects_cpp \ helloworld \ helloworld.cpp -o $ C: \ Users \ EKI \ Desktop \ projects_cpp \ helloworld <</p>

g ++. exe: ошибка: c: UsersEKIDesktopprojects_cpphelloworldhelloworld.cpp: нет такого файла или каталога g ++. exe: фатальная ошибка: нет вводаКомпиляция файлов прекращена. Терминальный процесс завершается с кодом выхода: 1

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