How to debug script-launched executable?
Answered
I have a Python script which uses subprocess to launch and communicate with a C++ executable. I am mainly interested in debugging the C++ but am not sure what I need to do to configure this? Could anyone set me in the right direction? Thanks.
Please sign in to leave a comment.
You can use the "Attach to local process" feature: https://www.jetbrains.com/help/clion/attaching-to-local-process.html.
Thanks! I'll look into that.