vscode 新建cpp文件_在macOS Catalina中配置VS Code C++开发环境

bc81bb8ab871c49fdad7f75d80434ef0.png

2019年10月份在Apple更新了macOS Catalina后,搜到的早于次更新的方法都出现了问题,参考VS Code的官方教程以及官方教程提到的issue #3829得到了以下使用CodeLLDB扩展来解决问题。(与官方教程基本一致,改动部分为关键部分,加粗标出)


一、安装VS Code及扩展

  1. 在官网下载安装mac版本VS Code
  2. 安装C/C++、C/C++ Clang Command Adapter及CodeLLDB扩展
  3. 按⇧⌘P,输入shell,选择如图命令

7f7d85f86a308b30682c7122177c80db.png

二、搭建测试项目

在Terminal输入以下命令

mkdir projects
cd projects
mkdir helloworld
cd helloworld
code .

三、设置编译器路径

⇧⌘P,输入C/C++,选择Edit Configurations (UI)。Edit Configurations (JSON)应该也可以,没有测试过

9db125f1d47e24cbfa6136481a876f0d.png

保持默认设置即可,中间设置的解释可参考开头官网链接

四、创建build task

  1. 按⇧⌘P,输入Task
  2. 选择tasks: Configure Default Build Task
  3. 选择Create tasks.json file from template
  4. 选择Others
  5. VS Code会创建一个tasks.json,在编辑器中打开
  6. 按照如下设置task.json
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Build with Clang",
      "type": "shell",
      "command": "clang++",
      "args": [
        "-std=c++17",
        "-stdlib=libc++",
        "helloworld.cpp",
        "-o",
        "helloworld.out",
        "--debug"
      ],
      "group": {
        "kind": "build",
        "isDefault": true
      }
    }
  ]
}

在实际使用中,将helloworld.cpp和helloworld.out改为你的项目中对应的内容

五、设置debug setting

  1. 按⇧⌘P,输入launch,选择Debug:Open launch.json
  2. 选择LLDB
  3. 会生成如下launch.json文件
{    
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug",
            "program": "${workspaceFolder}/<your program>",
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}

将<your program>改为helloworld.out

六、添加源文件

创建helloworld.cpp,输入如下代码

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main()
{

    vector<string> msg {"Hello", "C++", "World", "from", "VS Code!"};

    for (const string& word : msg)
    {
        cout << word << " ";
    }
    cout << endl;
}

七、Build

按⇧⌘B来编译

会出现如下提示

dd984c09972c999db2cc5e1be89932e8.png

八、运行&Debug

点击Debug -> Run Without Debugging 即可直接运行出结果

0ebde668e6b15757f2ba9baf46af240b.png

设置断点,Debug -> Start Debugging即可进入Debug

aea8df22302615a7323bdb3449a8020d.png
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值