如何调试 Windows 上的 emacs 崩溃?
我在 Windows(工作)和 Linux(在家)上使用 emacs。在 Windows 机器上,我使用 emacs 23.1 (从这里开始: ftp://ftp.gnu.org/gnu/emacs/windows/emacs-23.1-bin-i386.zip)。它现在刚刚崩溃了。最近,我对在 Windows 上进行调试(使用 WinDbg)产生了浓厚的兴趣,所以我真的很想尝试一下这个现成的崩溃:)有人可以告诉我在哪里(或者如果有的话)我可以获得符号Windows 版 emacs 文件(.pdb)?在Linux上,我从源代码编译我的emacs,所以符号并不是真正的问题......
I use emacs on windows (at work) and on linux (at home). On the windows machine, I'm using emacs 23.1 (from here: ftp://ftp.gnu.org/gnu/emacs/windows/emacs-23.1-bin-i386.zip). It just crashed right now. Recently, I've taken a healthy interest in debugging on windows (using WinDbg), so I really want to try my hand at this ready-made crash :) Can someone tell me where (or if at all) I can get the symbol files (.pdb) for emacs for windows? On linux, I compile my emacs from source so symbols aren't really a problem...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另外,如果 emacs 崩溃,问题很可能出在 elisp 代码中的某个地方(emacs 相对较少是用 c 编写的),在这种情况下,emacs 已经内置了 elisp 的源代码调试功能。
在 ielm、堆栈跟踪工具、edebug 之间、错误调试、mx apropos 以及在运行时修改和重新加载定义的能力,它具有相当全面的调试功能,无需使用外部工具。外部工具实际上对于 elisp 的东西来说并不是很有用。
Also, with an emacs crash, the problem is quite likely somewhere in the elisp code (relatively little of emacs is written in c), in which case emacs already has source debugging for elisp built in.
Between ielm, the stack trace tool, edebug, debug-on-error, m-x apropos and the ability to modify and reload definitions at runtime it has pretty comprehensive debugging without needing to use an external tool. An external tool will actually won't be very useful for elisp stuff.