Ubuntu VSCode 配置C++环境

首先确保自己有g++

在命令行输入 g++ --version

 如果没有就下在一下:

sudo apt install g++

然后,建立一个C++ 工作环境,其实就是一个文件夹,我把这个文件夹命名为“C++环境”

以后,我们想要使用C++工作环境,就在这个文件里面放置对应的代码就好了

打开“C++环境” 文件夹,在里面新建一个test.cpp 用作尝试代码:

#include
using namespace std;
 
int main()
{
    cout << "hello world!" <

然后,在C++环境文件夹下面建立一个名为 .vscode   的文件夹

在这个文件夹里面添加两个文件 : launch.json tasks.json 文件

Ubuntu VSCode 配置C++环境_第1张图片


launch.json文件内容如下:

{    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/${fileBasenameNoExtension}.out",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,	//如果不要窗口弹出,在ide中显示,就设置成 false
            "MIMode": "gdb",
            "preLaunchTask": "build",   //表示预先生成一个中间文件,用于g++运行
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

tasks.json 文件内容如下:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "g++",
            "args": ["-g", "${file}", "-std=c++11", "-o", "${fileBasenameNoExtension}.out"]	//相当于 g++ -g main.cpp -std=c++11 -o main.out
        }
    ]
}

然后再次运行test.cpp ,输出正确就说明没啥问题啦

ref :

记录一次ubuntu18.04安装 vscode并且配置C++调试环境_lx127372的博客-CSDN博客_ubuntu18.04安装vscode

Ubuntu18.04下配置VScode的C/C++开发环境_Zero_to_zero1234的博客-CSDN博客_ubuntu安装配置vscode Ubuntu20.04下安装VSCode(配置C/C++开发环境)_fangshuo_light的博客-CSDN博客_ubuntu安装vscode

你可能感兴趣的:(Ubuntu,ubuntu,c++,VSCode)