Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用 Perl 编写的项目,其中 XS 组件用 C++ 编写。我正在使用类似的命令进行调试
perl -d perl_file.pl
如何使用调试器从 Perl 跳转到那些 C++ 文件?
您可以使用 GNU 项目调试器。
gdb /usr/bin/perl r perl_file.pl
请参阅 perlhacktips:
另见: