mac10.15 vscode c++ 調試

修改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": "test tree",
            "type": "lldb",  //修改原有的爲lldb
            "request": "launch",
            "program": "${workspaceFolder}/build/a.out",
            "args": [
                
            ],
            "stopAtEntry": true,
            "cwd": "${workspaceFolder}/build/",
            "environment": [],
            "externalConsole": false,
            "MIMode": "lldb"
        }
    ]
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章