1. 安装插件
安装以下四个插件
- C/C++
- C/C++ Clang Command Adapter
- Include Autocomplete
- Code Runner
2. 配置编译环境
在项目目录下新建 .vscode 文件夹, 然后在该目录下新建两个文件 launch.json/tasks.json, 并写入以下内容
- launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}.out",
"args": [],
"stopAtEntry"

本文介绍了如何在Linux环境下使用Visual Studio Code(VS Code)进行C/C++程序的编译。首先,需要安装C/C++、C/C++ Clang Command Adapter、Include Autocomplete和Code Runner等四个插件。接着,配置编译环境,创建launch.json和tasks.json文件。在遇到includePath错误时,通过编辑配置文件解决。最后,通过点击VS Code的运行按钮完成代码的编译,如果显示成功,那么编译后的文件将保存在代码目录下。
最低0.47元/天 解锁文章
5853





