Linux环境下,使用VS Code编译C++工程1. 准备安装VS Code安装C++ extension for VS Code安装g++(gcc)编译器sudo apt-get install g++或者更新sudo apt-get update安装gdb调试器sudo apt-get install build-essen...
Linux
环境下,使用VS Code
编译C++
工程
1. 准备
-
安装VS Code
-
安装C++ extension for VS Code
-
安装
g++
(gcc
)编译器
sudo apt-get install g++
或者更新
sudo apt-get update
- 安装
gdb
调试器
sudo apt-get install build-essential gdb
2. 创建Hello World
VS Code
需要为工程配置3个文件:
`tasks.json` :编译器配置
`launch.json`:调试器配置
`c_cpp_properties.json` (编译器路径、智能提示)
- 创建
Hello World
工程
mkdir hello_world
cd hello_world
code .
- 新建
hello_world.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;
}
3. 编译hello_world.cpp
在.vscode
文件夹中,创建tasks.json
文件,选择C/C++: g++ build active file
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": ["-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}"],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
command
:指定运行程序(g++
);
args
:指定g++
的命令行参数,参数必须按照编译器指定的顺序。
本例中,g++
编译活动文件(${file}
,若要编译所有文件,可用${workspaceFolder}/*.cpp"
替换),并在当前目录(${fileDirname}
)中创建与活动文件同名(无扩展名)的可执行文件(${fileBasenameNoExtension}
);
label
:任务列表中的值,可以任意命名。
isDefault
:group
对象成员,true
表示按Ctrl + Shift + B
时,该任务执行;如果设为false
,可以从Terminal
菜单Tasks: Run Build Task
处执行。
4. 调试hello_world.cpp
在.vscode
文件夹中,创建launch.json
文件,选择g++ build and debug active file
{
"version": "0.2.0",
"configurations": [
{
"name": "g++ build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}
program
:指定要调试的程序,${fileDirname}
表示活动文件文件夹、${fileBasenameNoExtension}
表示不带扩展名的活动文件名。
默认情况下,C++ extension
不会在源代码中添加断点,并将stopAtEntry
设为false
。将stopAtEntry
更改为true
,以便调试时,调试器在main
方法上停止。
5. C/C++
配置
若要修改C/C++ extension
,可创建c_cpp_properties.json
文件,该文件用于设置编译器路径、C++
标准(默认为C++17
)等。调用命令面板(Ctrl+Shift+P
),选择C/C++: Edit Configurations (UI)
,
{
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/**"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
参考
Using C++ on Linux in VS Code
本文标题为:Linux环境下,使用VSCode编译C++工程
基础教程推荐
- C/C++编程中const的使用详解 2023-03-26
- C语言基础全局变量与局部变量教程详解 2022-12-31
- 详解c# Emit技术 2023-03-25
- C++详细实现完整图书管理功能 2023-04-04
- C语言 structural body结构体详解用法 2022-12-06
- C++中的atoi 函数简介 2023-01-05
- C利用语言实现数据结构之队列 2022-11-22
- 一文带你了解C++中的字符替换方法 2023-07-20
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- 如何C++使用模板特化功能 2023-03-05