Skip to content

Instantly share code, notes, and snippets.

@jginternational
Created June 1, 2021 11:16
Show Gist options
  • Save jginternational/6556046973f8fe479e815c09d0ed92a1 to your computer and use it in GitHub Desktop.
Save jginternational/6556046973f8fe479e815c09d0ed92a1 to your computer and use it in GitHub Desktop.
Kratos debug
{
// 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": "Python: current file",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"env":{
"OMP_NUM_THREADS": "1",
"PYTHONPATH":"KRATOS_BIN_DEBUG",
"LD_LIBRARY_PATH":"KRATOS_BIN_DEBUG_LIBS"
},
"cwd": "MODEL"
},{
"name": "C++ Attach",
"type": "cppvsdbg",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment