vscode-pythonCpp
vscode-pythonCpp copied to clipboard
A Visual Studio Code Debug Extension for debugging mixed Python and C++ code. The extension starts a Python debug session and attaches the C++ debugger to it. This extension is useful for debugging Py...
Hi, I have a launch.json with the following configurations: ```json { "name": "pydebug", "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal" }, { "name": "Python C++ Debug", "type": "pythoncpp", "request":...
I use `clangd` for C++ intellisense. Because `clangd` keeps saying it conflicts with Microsoft's C++ extension, I use CodeLLDB to debug C++ code. According to https://github.com/benibenj/vscode-pythonCpp/issues/7, CodeLLDB seems to be...
This extension seems to work right out of the box with [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb) configurations. (At least in my own setup) CodeLLDB supports `lldb` much better than the official MS C++ extension...
I have failed to use the debugger on mac. Is it supported?
Add macOS lldb support to defaults. Currently, gdb is only available for x86 macs. lldb is required for apple silicon macs.
Is there a way to use extension with Python Remote Attach configuration? I want to run `python -m debugpy --listen 5678 --wait-for-client mypythonapp.py` on local machine, than attach to python...
I installed the extension on my WSL, however, breakpoints in C++ do not work. Has anyone managed to run the extension on WSL? If so, can you please share the...
Many thanks for this great extension ! I could use it for debugging current file, but I wonder if is it possible to use it for debugging tests ? I...
The extension is originally intended to work in the _launch_ mode only. However, by using the custom configuration (_Python C++ Debugger Custom: GDB_) and modifying the Python config's _(type =...
Hi ,all I followed the "Custom Configurations" in the overview page to write the launch.json file. However, it give me such warning :"Configured debug type 'cppvsdbg' is installed but not...