Mac 下 VsCode 调试 C 程序

首先将文件夹加入 workspace, 然后在 .vscode 下添加两个文件。
task.json:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [{
        "label": "build",
        "command": "gcc",
        "args": [
            "-g",
            "${file}",
            "-o",
            "${fileDirname}/${fileBasenameNoExtension}"
        ],
        "type": "shell",
        "problemMatcher": []
    }]
}
//调试(fn + F5)
//下一步(fn + 10)
//重启(shift+fn+F5)
//继续(fn +F5)

launch.json

{
    "version": "0.2.0",
    "configurations": [

        {
            "name": "(lldb) Launch", // 配置名称,将会在调试配置下拉列表中显示
            "type": "cppdbg", // 调试器类型:Windows表示器使用cppvsdbg;GDB和LLDB使用cppdbg。该值自动生成
            "request": "launch", // 调试方式
            "program": "${fileDirname}/${fileBasenameNoExtension}", // 要调试的程序(完整路径,支持相对路径)
            "args": [], // 传递给上面程序的参数,没有参数留空即可
            // "stopAtEntry": false, // 是否停在程序入口点(即停在main函数开始)(目前为不停下)
            "stopAtEntry": true,
            "cwd": "${workspaceRoot}", // 调试程序时的工作目录
            "environment": [],
            "externalConsole": false, // 调试时是否显示控制台窗口(目前为不显示)
            "preLaunchTask": "build", //预先执行task.json
            "MIMode": "lldb" //MAC下的debug程序
        }
    ]
}

你可能感兴趣的:(操作系统,c++)