Visual C++ Express 2010:“尝试从 x64 环境构建 Win32 应用程序”
1) 运行“C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd /x64 /Debug”来设置环境变量。
2)从该命令提示符运行“vcexpress”。从命令提示符启动的原因是为了检测到正确的编译器和链接器。否则,当从开始菜单运行 vcexpress 时,它们默认为 x86_amd64。
3)尝试构建我的项目,一个由 CMake 生成的 SuperBuild,它调用 msbuild 来编译一些静态解决方案文件。收到此错误:
您正在尝试从 x64 环境构建 Win32 应用程序。 如果使用 Windows 7.1 SDK 构建环境,请输入 setenv / x86
1) ran "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd /x64 /Debug" to set environment variables.
2) ran "vcexpress" from that command prompt. The reason for starting from the command prompt is so that the correct compiler and linker are detected. Otherwise they defaulted to x86_amd64 when vcexpress is run from the start menu.
3) attempted to build my project, a SuperBuild generated by CMake which calls msbuild to compile some static solution files. Received this error:
You are attempting to build a Win32 application from an x64-environment.
If using the Windows 7.1 SDK build environment, type setenv / x86
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是更改 TARGET_CPU 变量。运行 setenv /x64 /debug 时,它设置:
我将其更改为 amd64,现在项目构建成功:
The solution was to change the TARGET_CPU variable. When setenv /x64 /debug was run, it set:
I changed this to amd64, and the project now builds successfully: