应用程序作为 x86 或 x64 运行?
我的一个应用程序崩溃了,我被告知这可能是因为它在本应作为 x86 运行时却作为 x64 进程运行。编译配置中的目标 CPU 是默认的“任何 CPU”,而不是“x86”(如果出现问题,则应该是“x86”)。我的问题是这样的,在任务管理器中它显示了我的应用程序的进程,例如myService.exe *32。这表明它以 32 位运行,但在崩溃时得到的 WERC92F.tmp.WERInternalMetadata.xml 文件中包含以下几行:
<Flavor>Multiprocessor Free</Flavor>
<Architecture>X64</Architecture>
为什么这是 x64?
One of my applications is crashing and I am told that this could be because it is running as an x64 process when it should be running as x86. The targeting CPU is the default “Any CPU”, instead of being “x86” (which it should be if this is the problem) in Compile configuration. My question is this, in task manager it shows the process for my application like this myService.exe *32. Which suggests to me that it is running as 32 bit, but in the WERC92F.tmp.WERInternalMetadata.xml file I get when it crashes it has the following lines:
<Flavor>Multiprocessor Free</Flavor>
<Architecture>X64</Architecture>
Why is this saying x64?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,X64 是操作系统架构,而不是正在使用的进程模型。
X64 is in this case the operating systems architecture, not the process model in use.