Hi,
We would like to know if there is any option available to execute and debug( setting break point and delete break point) C/C++ Source files Python API's inside Eclipse IDE after interfacing Pydev with Eclipse.
Please let us know.
Thanks and regards.
Chandrakant shrimantrao.
Hello Chandrakant,
The usual way I go about this is that one of the debuggers should be in remote mode, so, either you start it with PyDev and then attach the C/C++ debugger to it afterwards or you start it with the C/C++ debugger and then attach the PyDev debugger afterwards.
Attaching to the PyDev debugger is mostly a matter of calling `pydevd.settrace()` appropriately (making sure you have the remote debugger on the client listening).
Best regards,
Fabio