LINUX下vscode c/c++三个文件配置

LINUX vscode 配置文件

  • LINUX下vscode c/c++三个文件配置
    • task.json
    • c_ cpp_properties.json
    • Launch.json

LINUX下vscode c/c++三个文件配置

task.json

[ctrl][shift]+p -> Task,configure default build task

{
// 有关 tasks.json 格式的文档,请参见
    // https://go.microsoft.com/fwlink/?LinkId=733558
    "version": "2.0.0",
    "tasks": [
        {
            "type": "shell",
            "label": "build",  //注意修改这里,起个名称,与launch.json 的preLaunchTask处对应
            "command": "/usr/bin/gcc-5",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "options": {
                "cwd": "/usr/bin"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

c_ cpp_properties.json

[ctrl][shift]+p ->C/C++ Edit configuration

{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/gcc",
            "cStandard": "c11",
            "cppStandard": "c++17",
            "intelliSenseMode": "gcc-x64"  //LINUX 为gcc-x64 ,注意修改
        }
    ],
    "version": 4
}

Launch.json

F5


{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb)launch",  //需要修改
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "build", //Tasks.JSON 中label的内容
            "miDebuggerPath": "/usr/bin/gdb"
        }
    ]
}

你可能感兴趣的:(vscode)