Visual C++ 2010 Express x64 组件
我正要开始使用这个<来学习x64汇编/a> 教程(系列),但设置 Visual C++ Express 不起作用。我安装了 x64 版本,甚至下载并安装了 Windows 7 SDK。
然而,即使安装此软件包后,我仍然无法在配置管理器中选择 x64 平台(观看教程以了解我的意思,大约在 4:00)
我尝试重新启动 C++ ,但这也行不通。虽然有很多关于如何使 x64 编译器工作的资料,但它们都解释了与我所做的相同的步骤。
我唯一能想到的就是要么重新安装c++,要么重新启动。
编辑:重新启动不起作用。
编辑2:尝试 .net 4.0 Windows 7 SDK现在... -> 即使安装了 x64 编译器也不会启用它(如果安装程序可信的话)
I was about to start learning x64 assembly using this tutorial (series) but setting up Visual C++ Express just isn't working. I Have the x64 version installed and I even downloaded and installed the windows 7 SDK.
However even after installing this package I still don't have the option to select the x64 platform in the configuraion manager (watch the tutorial to see what I mean, its at approx. 4:00)
I have tried restarting C++, but that doesn't work either. Whilst there are much sources on how to make the x64 compiler working they all explain the same steps which are the ones I did.
The only thing I can think of is either re-installing c++ or rebooting.
EDIT: Rebooting doesn't work.
EDIT 2: trying the .net 4.0 Windows 7 SDK now... -> doesn't enable the x64 compiler even though it is installed (if the installer is to be believed)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Visual Studio 2010 Visual C++ Express 版不支持 x64 编译。
Visual Studio 2010 Visual C++ Express Edition does not include support for x64 compilation.
我在使用新安装的 VS2010 Express 和 Windows SDK 进行 x64 编译时也遇到了问题。事实证明,微软发现了这个配置的一个错误,他们有一个补丁可以修复这个问题:
http://msdn.microsoft.com/en-us/vstudio//gg697159
VS2010 Express 版不支持开箱即用的 x64,但可以与 Windows 一起使用安装了 7 SDK 和上述补丁后,工作正常。
I also had problems compiling for x64 with my newly installed VS2010 Express, and Windows SDK installed. It turns out that Microsoft has found a bug with this configuration, and they have a patch that fixes this at:
http://msdn.microsoft.com/en-us/vstudio//gg697159
VS2010 Express edition does not support x64 out-of-the-box, but with Windows 7 SDK and the above mentioned patch installed, it works fine.
您必须拥有 Windows SDK v 7.1,否则这将不起作用。我也被 SDK 7 烧伤了。
You must have the Windows SDK v 7.1 otherwise this won't work. I got burned by SDK 7 too.