Linux下使用vscode

1、下载安装vscode
vscode下载地址
2、安装插件
Linux下使用vscode_第1张图片
3、添加源文件
Linux下使用vscode_第2张图片
4、添加配置
Linux下使用vscode_第3张图片
修改launch.jason脚本

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "g++ - 生成和调试活动文件",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "C/C++: g++ build active file",
            "miDebuggerPath": "/usr/bin/gdb"
        }
    ]
}

4、配置任务
Linux下使用vscode_第4张图片
添加task.jason脚本

{
    // 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++ -g main.cpp -o main",
            "problemMatcher": ["$gcc"],
            "group": {
                
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

ctrl+shift+B 运行任务脚本
5、切换到源文件 按“F5”运行调试

你可能感兴趣的:(Linux,linux,visual,studio,code)