How to debug script-launched executable?
已回答
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.
请先登录再写评论。
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.