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 脚本。我有核心,需要在这些核心文件上运行 gdb。谁能给我提供从 perl 脚本连接 gdb 的信息。
谁能给我提供从 perl 脚本连接 gdb 的信息。
你不想那样做。
相反,您想要做的是弄清楚为什么您perl在生产中因核心转储而崩溃。为此,请运行
perl
gdb /path/to/perl /path/to/core
在生产机器上,然后发出where命令。
where