Я не могу собрать C ++ с визуальным кодом студии - PullRequest
0 голосов
/ 17 февраля 2019

Я хочу скомпилировать мой "привет мир" с C ++, но не могу.Я использую код Visual Studio и вот мой код.

Когда я пытаюсь собрать cpp, возникает ошибка:

clang: ошибка: нет такого файла или каталога: '/ Users /a1 / C ++ / first '

Мой файл "/Users/a1/C++/first.cpp"

Это для macOS, High Sierra 10.14 и кода Visual Studio.

Я установил C / C ++, но теперь не могу собрать свой C ++.

#include "stadfx.h"
#include < iostream >

int _tmain(int argc, _TCHAR* argv[]) {
std::cout <<"Hello, World" <<std::endl;

return 0;
}

Выполнение задачи: g ++ /Users/a1/C++/first.cpp -o -g / Users / a1 / C ++ / first <</p>

clang: ошибка: нет такого файла или каталога: '/ Users / a1 / C ++ / first' 터미널 프로세스 가 종료 코드 (1 (으) 로 종료*.

А это мой "tasks.json"

{
  "version": "2.0.0",
  "runner": "terminal",
  "type": "shell",
  "echoCommand": true,
  "presentation" : { "reveal": "always" },
  "tasks": [
    //C++ 컴파일
    {
      "label": "build and compile for C++",
      "type": "shell",
      "command": "g++",
      "args": [
          "${file}",
          "-o","-g",
          "${fileDirname}/${fileBasenameNoExtension}"
      ],
      "group": {
        "kind":"build",
      "isDefault": true },

      //컴파일시 에러를 편집기에 반영
      //참고:   https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher

      "problemMatcher": {
          "fileLocation": [
              "relative",
              "${workspaceRoot}"
          ],
          "pattern": {
              // The regular expression. 
             //Example to match: helloWorld.c:5:3: warning: implicit declaration of function 'prinft'
              "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning error):\\s+(.*)$",
              "file": 1,
              "line": 2,
              "column": 3,
              "severity": 4,
              "message": 5
          }
      }
  },
  //C 컴파일
  {
      "label": "save and compile for C",
      "command": "gcc",
      "args": [
          "${file}",
          "-o",
          "${fileDirname}/${fileBasenameNoExtension}"
      ],
      "group": {
        "kind":"build",
      "isDefault": true},

      //컴파일시 에러를 편집기에 반영
      //참고:   https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher

      "problemMatcher": {
          "fileLocation": [
              "relative",
              "${workspaceRoot}"
          ],
          "pattern": {
              // The regular expression. 
             //Example to match: helloWorld.c:5:3: warning: implicit declaration of function 'prinft'
              "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning error):\\s+(.*)$",
              "file": 1,
              "line": 2,
              "column": 3,
              "severity": 4,
              "message": 5
          }
      }
  },
  // 바이너리 실행(Ubuntu)

  {

      "label": "execute",

      "command": "cd ${fileDirname} && ./${fileBasenameNoExtension}",

      "group": "test"

  }

  ]
}

Это мой "launch.json"

"version": "0.2.0",
"configurations": [
    {
        "name": "(lldb) Launch",
        "type": "cppdbg",
        "request": "launch",
        "program": "enter program name, for example ${workspaceFolder}/a.out",
        "miDebuggerPath": "/Users/a1/C++/cpp.exe",
        "args": [],
        "stopAtEntry": false,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "externalConsole": true,
        "MIMode": "lldb"
    }
]}

А это мой "c_cpp_properties.JSON "

{
    "configurations": [
    {
        "name": "Mac",
        "includePath": [
            "${workspaceFolder}"
        ],
        "defines": ["_DEBUG", "UNICODE"],
        "macFrameworkPath": [
            "/System/Library/Frameworks",
            "/Library/Frameworks"
        ],
        "compilerPath": "/Users/a1/C++/first.cpp",
        "cStandard": "c11",
        "cppStandard": "c++17",
        "intelliSenseMode": "clang-x64"
    }
],

"browse": {
    "path": [
        "${workspaceFolder}","/Users/a1/C++/first.cpp"
    ],
    "limitSymbolsToIncludedHeaders": true,
    "databaseFilename": ""
},

"version": 4
}

1 Ответ

0 голосов
/ 17 февраля 2019

Опция -o ожидает имя файла, которое должно идти сразу после "-o".Вы дали "-g" в качестве имени файла.И тогда команда заканчивается файлом для компиляции.В вашем случае «first» (которого нет).

Попробуйте переместить порядок в вашем файле json примерно так:

"args": [
      "-g",
      "-o",
      "${fileDirname}/${fileBasenameNoExtension}",
      "${file}"

  ],
...