我无法使用visual studio代码构建C ++

问题描述 投票:0回答:1

我想用C ++编译我的“hello world”,但我不能。我使用Visual Studio Code,这是我的代码。

当我尝试构建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 <

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
}
c++ visual-studio-code vscode-tasks
1个回答
3
投票

-o选项需要一个文件名,该文件名应紧跟在“-o”之后。您已将“-g”作为文件名。然后命令以要编译的文件结束。在你的情况下,“第一”(不存在)。

尝试将json文件中的顺序移动到:

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

  ],
© www.soinside.com 2019 - 2024. All rights reserved.