我可以在 x64 WIN7 上安装 x86/x64 Windbg 吗?
我需要分析一些x86转储文件,所以我想在我的计算机上安装x86 Windbg。
或者我是否可以使用 x64 Windbg 来分析 x86 转储文件?
I need to analysis some x86 dump file, So I want to install the x86 windbg on my computer.
or if I can use the x64 windbg to analysis the x86 dump file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这样做是个好主意,因为您需要 32 位版本来调试 32 位应用程序/转储。所有文件都位于安装目录中,因此您可以并行进行任意数量的安装。
另外,请记住,如果您使用 64 位工具创建转储,您将获得 64 位转储 - 即使进程是 32 位。在这种情况下,您将获得 WoW64 进程的转储,这使得调试转储变得更加困难。但是,如果您使用 32 位工具创建转储文件,您将获得常规 32 位转储,然后您可以像平常一样使用 32 位调试器。
Yes, and it is a good idea to do so since you'll need the 32 bit version to debug 32 bit applications/dumps. All the files are located in the install directory, so you can have any number of installations side by side.
Also, keep in mind that if you use a 64 bit tool to create a dump, you'll get a 64 bit dump - even if the process is 32 bit. In that case you'll get a dump of the WoW64 process, which makes debugging the dump a bit more difficult. However, if you use a 32 bit tool to create the dump file, you'll get a regular 32 bit dump and then you can use the 32 bit debugger as you normally would.