【发布时间】:2018-06-14 09:21:15
【问题描述】:
我想调试一个 Python 二进制文件,然后按照 here 的建议调用 scipy C++ 模块(我想单步执行这些模块)。我可以使用命令行 gdb 成功地做到这一点
gdb --args python runtests.py -g --python mytest.py
我可以在 Eclipse 中通过将二进制设置为:
/usr/bin/python3
和调试器的参数为
runtests.py -g --python mytest.py
我可以在 Visual Studio Code 中以某种方式做到这一点吗?
【问题讨论】:
标签: c++ ubuntu debugging visual-studio-code