Ubuntu 即时调试

发布于 2024-09-14 16:16:24 字数 205 浏览 3 评论 0原文

大家早上好,

我目前在一个小软件上随机遇到段错误,但是,它仅在未使用附加调试器启动时出现(由于可能的内存错误,其中值在启动时在安全间隔内初始化)调试器)。

是否可以仅在发生段错误时才附加调试器,例如,当 Windows 中发生未处理的异常时将 Visual Studio 附加到进程?

我正在使用 Ubuntu,32 位。

提前致谢

Good Morning everyone

I'm currently facing a segfault at random on a little piece of software, however, It appears only when not started with an attached debugger (due to a possible memory error, where values are initialized in a safe interval when started with a debugger).

Is it possible to attach an debugger only in case of an segfault, just-in-time, like, for example attaching Visual Studio to a process when unhanded exceptions happen in Windows?

I am working on Ubuntu, 32 bit.

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2024-09-21 16:16:24

Ubuntu 开箱即用地将核心文件大小限制为“无”。使用ulimit -c unlimited更改它将允许错误的程序像它应该的那样转储核心,然后GDB将很乐意允许对错误进行事后分析。

Out of the box, Ubuntu limits the core file size to "none". Changing it with ulimit -c unlimited will allow your errant program to dump core like it should and then GDB will be happy to allow post-mortem analysis of the fault.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文