如何在 64 位中调试 Visual Studio
好的,创建应用程序后我希望它兼容 64 和 32 位系统。默认情况下,Visual Studio 调试 x86(32 位)中的应用程序。那么如何在 x64 中针对 64 位系统进行 Visual Studio 调试。 谢谢。
OK, after creating an application I want it to be compatible for 64 and 32 bit systems. By default Visual Studio debugs applications in x86 (which is 32-bit). So how can I make Visual Studio debug in x64, for 64-bit systems.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定是什么语言,但如果是 C# ...
C# 项目的默认生成设置是 Visual Studio 2010 中调试模式下的 x86 生成。要在 64 位中进行调试,您只需将生成设置更改为 64 位即可。
Not sure what language but if it's C# ...
The default build setting for C# projects is an x86 build in debug mode in Visual Studio 2010. To debug in 64 bit you simple need to change the build setting to 64 bit.