ubuntu系统下vscode配置c++环境
时间: 2023-11-22 13:51:01 浏览: 120
以下是在Ubuntu系统下配置VScode C++环境的步骤:
1.安装Ubuntu Make工具
```shell
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
```
2.使用Ubuntu Make安装C++编译器
```shell
umake cpp
```
3.安装VScode
可以在VScode官网下载.deb文件,然后使用以下命令进行安装:
```shell
sudo dpkg -i <file>.deb
sudo apt-get install -f
```
4.安装C++插件
在VScode中搜索安装C++插件,例如C/C++、C++ Intellisense等。
5.配置tasks.json文件
在VScode中打开任务面板(快捷键Ctrl+Shift+P),选择“Configure Task”,然后选择“Create tasks.json file from template”中的“Others”选项。在弹出的窗口中,选择“g++ build active file”模板,然后修改tasks.json文件中的内容,例如:
```json
{
"version": "2.0.0",
"tasks": [
{
"label": "build active file",
"type": "shell",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
```
6.使用tasks.json文件编译C++代码
在VScode中打开C++代码文件,然后按下快捷键Ctrl+Shift+B,选择“build active file”任务,即可编译C++代码。
阅读全文