赞
踩
Using Clang in Visual Studio Code
[官方文档翻译]Mac使用VS Code配置C++编译和调试环境
Download Link
在VS Code官网下载安装MacOS版本。
在扩展商店中搜索c++安装
我的电脑为新系统,在安装c++插件时弹出命令行开发者工具安装提示,选择安装,其中包括clang
可以通过在终端输入以下命令来检查clang是否已经安装
clang --version
如果没有安装,也没有在安装c++插件时弹出提示,可以使用一下命令安装命令行开发者工具。
xcode-select --install
(可以先使用 cd 文件夹名 命令在终端跳转到想要创建文件夹的目录下)
在终端创建一个用来存放所有项目文件的空文件夹,名为project。然后在这个文件夹中创建一个子文件夹,命名为helloworld,然后在这个子文件夹中打开VS Code。
mkdir project
cd project
mkdir helloworld
cd helloworld
code .
如果提示code命令未安装,则手动打开vscode进行安装:
使用 command + shift + p 然后输入 install code,选择 > install ‘code’ command in path
code . —— 在当前文件夹下打开VS Code,并且当前的文件夹成为默认工作空间(workspace)
在资源管理器中新建文件,命名为helloworld.cpp
复制以下代码粘贴至文件中
#include <iostream> #include <vector> #include <string> using namespace std; int main() { vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"}; for (const string& word : msg) { cout << word << " "; } cout << endl; }
command + s 保存文件。
也可以在上方选项栏中选择文件-自动保存开启自动保存
按照以上步骤运行helloworld.cpp后,会自动生成tasks.json文件。
我获得的文件内容如下:
{ "tasks": [ { "type": "cppbuild", "label": "C/C++: clang++ 生成活动文件", "command": "/usr/bin/clang++", "args": [ "-fcolor-diagnostics", "-fansi-escape-codes", "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "调试器生成的任务。" } ], "version": "2.0.0" }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。