Visual C++ Express 2010:“尝试从 x64 环境构建 Win32 应用程序”

发布于 2025-01-06 15:02:51 字数 382 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦境 2025-01-13 15:02:51

解决方案是更改 TARGET_CPU 变量。运行 setenv /x64 /debug 时,它设置:

C:\Temp\cmakeex\build>echo %TARGET_CPU%
x64

我将其更改为 amd64,现在项目构建成功:

>设置TARGET_CPU=amd64

The solution was to change the TARGET_CPU variable. When setenv /x64 /debug was run, it set:

C:\Temp\cmakeex\build>echo %TARGET_CPU%
x64

I changed this to amd64, and the project now builds successfully:

>set TARGET_CPU=amd64

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文