You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
1.9 KiB

{
// 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": "(lldb) Launch", //
"type": "lldb", // ,CodeLLDB
"request": "launch", // launchattach
"program": "${command:cmake.launchTargetPath}", // cmake-tools
"args": [], //
"stopAtEntry": false, // truemain
"cwd": "${workspaceFolder}", // ${workspaceFolder}${fileDirname}
"environment": [], //
"externalConsole": false, // 使cmdIDEfalse使
"internalConsoleOptions": "neverOpen", // neverOpengdb/lldb
"MIMode": "lldb", // gdblldb使llvm使lldb
"miDebuggerPath": "/usr/bin/lldb", // lldb which lldb
"setupCommands": [
{ // STL
"description": "Enable pretty-printing for lldb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
],
"preLaunchTask": "taskBuild" // tasks.jsonlabelCMakeCMake: build
}
]
}