Ask PyCharm to call AppCode to debug C ++?

I have PyCharm and AppCode. I have a C ++ project in AppCode and a Python project in PyCharm. The Python program calls an executable file created from a C ++ project. The debugging capabilities of AppCode are very nice, but unfortunately, everything goes wrong when the PyCharm project calls C ++ executables, and I cannot use the debugging capabilities of AppCode. Is there anyway that PyCharm calls AppCode so that when Python code calls C ++ code, can I use AppCode debugging? Thanks!

+5
source share
2 answers

AppCode has the ability to connect to the process. But the tricky part caught the point when the executable started attaching.

What I would try is to simply debug a C ++ project with a condition condition, since it runs from python code. I assume that your python project runs an executable with command line options.

+1
source

Try using Eclipse as a replacement for PyCharm, it should be able to use C ++ executables and AppCode debugging capabilities in person, I think it could be even better.

+1
source

Source: https://habr.com/ru/post/1203511/


All Articles