vscode配置c/c++环境LLVM
时间: 2023-11-12 08:00:00 浏览: 182
好的,以下是配置步骤:
1. 安装LLVM
在官网下载对应平台的安装包,安装完成后将安装目录添加到环境变量中。
2. 安装VSCode插件
打开VSCode,进入扩展商店,搜索并安装C/C++插件。
3. 配置tasks.json文件
在VSCode中打开项目文件夹,按下Ctrl+Shift+P,输入“Tasks: Configure Task”,选择“C/C++: clang build active file”,然后在生成的tasks.json文件中添加以下内容:
```
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "clang build active file",
"command": "/usr/bin/clang",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
```
4. 配置launch.json文件
在VSCode中打开项目文件夹,按下F5,选择“C++(GDB/LLDB)”环境,然后在生成的launch.json文件中添加以下内容:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "lldb"
}
]
}
```
5. 编写代码并运行
在VSCode中打开一个C/C++文件,编写代码,按下Ctrl+Shift+B进行编译,按下F5进行调试。
阅读全文