c++ - 使用 Microsoft Visual C++ 构建工具的 CMake

标签 c++ visual-c++ cmake

编辑: 将此发布到他们的问题跟踪器并与一些 CMake 开发人员一起完成后,这实际上不是 CMake 问题。我的 MSBuild 安装出现问题,导致它返回“操作成功完成”。错误。总体上仍然没有解决问题,但这缩小了潜在原因的范围。


我正在尝试使用 MS Visual C++ 构建工具 2015 在 Windows 上构建一个 CMake 项目(注意:不是完整的 Visual Studio)。然而,CMake 显然无法找到 cl.exe

cmake ..
-- Building for: Visual Studio 14 2015
-- The C compiler identification is unknown
-- The CXX compiler identification is unknown
CMake Error at CMakeLists.txt:4 (project):
  No CMAKE_C_COMPILER could be found.



CMake Error at CMakeLists.txt:4 (project):
  No CMAKE_CXX_COMPILER could be found.

我怀疑这是因为 CMake 希望在 Visual Studio 安装中找到编译器,但独立构建工具可能将其安装在不同的位置?是否可以将 CMake 配置为在别处寻找编译器?

编辑:为了避免这种可能性,肯定安装了 cl.exe。当我打开 Visual C++ shell(将工具添加到路径)时,cl.exe 输出:

cl.exe
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x86
Copyright (C) Microsoft Corporation.  All rights reserved.

usage: cl [ option... ] filename... [ /link linkoption... ]

这与我运行 cmake .. 的环境相同,因此 cl.exe 肯定在 CMake 发现的路径上。

编辑 2:查看 CMakeError.log 文件,我看到以下几个变体

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed.
Compiler:  
Build flags: 
Id flags:  

The output was:
1
Microsoft (R) Build Engine version 14.0.25420.1
Copyright (C) Microsoft Corporation. All rights reserved.

Build started 4/14/2017 11:58:13 AM.
Project "E:\<project_dir>\build\CMakeFiles\3.8.0-rc4\CompilerIdCXX\CompilerIdCXX.vcxproj" on node 1 (default targets).
PrepareForBuild:
  Creating directory "Debug\".
  Creating directory "Debug\CompilerIdCXX.tlog\".
InitializeBuildStatus:
  Creating "Debug\CompilerIdCXX.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
ClCompile:
  C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\CL.exe /c /nologo /W0 /WX- /Od /Oy- /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc140.pdb" /Gd /TP /analyze- /errorReport:queue CMakeCXXCompilerId.cpp
TRACKER : error TRK0002: Failed to execute command: ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\CL.exe" @C:\Users\<user>\AppData\Local\Temp\tmpa0925a9f05d5426d82afdcee8d722031.rsp". The operation completed successfully. [E:\<project_dir>\build\CMakeFiles\3.8.0-rc4\CompilerIdCXX\CompilerIdCXX.vcxproj]


Done Building Project "E:\<project_dir>\build\CMakeFiles\3.8.0-rc4\CompilerIdCXX\CompilerIdCXX.vcxproj" (default targets) -- FAILED.

Build FAILED.

"E:\<project_dir>\build\CMakeFiles\3.8.0-rc4\CompilerIdCXX\CompilerIdCXX.vcxproj" (default target) (1) ->
(ClCompile target) -> 
  TRACKER : error TRK0002: Failed to execute command: ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\CL.exe" @C:\Users\<user>\AppData\Local\Temp\tmpa0925a9f05d5426d82afdcee8d722031.rsp". The operation completed successfully. [E:\<project_dir>\build\CMakeFiles\3.8.0-rc4\CompilerIdCXX\CompilerIdCXX.vcxproj]

    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:01.21

这看起来像是某种输出兼容性问题,尤其是“错误:操作成功完成”。线。我正在使用 CMake 3.8.0-rc4 和 Visual C++ 2015 构建工具。有什么想法吗?

编辑 3: 我认为从 3.8.0-rc4 升级到 3.8.0 可能会解决它,但无济于事。我还认为我正在使用 64 位 CMake 尝试构建一个 32 位程序,所以我也更改了它。还没有运气。

编辑 4: 此外,为了记录,这确实是在安装了完整 VS 2015 的 PC 上使用 CMake 构建的。

最佳答案

我不确定我是否为您的 The operation completed successfully 带来了解决方案问题,但我能够使用 cmake 3.8.1 和 C++2015 BuildTools 编译一个 [大] 真实项目。

诀窍就是使用“VS2015 x64 native 工具命令提示符”(或 x86)。您可以使用此提示调用 cmake,或者您 call此提示来自您的正常提示,它将正确设置您的路径。

REM Set up the include/lib paths of Visual Studio
call "C:\Program Files (x86)\Microsoft Visual C++ Build Tools\vcbuildtools.bat" amd64

cd to_build_dir

REM Call cmake with the right parameters
"C:\Program Files\CMake\bin\cmake.exe" .......

REM Build the XYZ project
MSBuild.exe SOLUTION_FILE.sln /t:XYZ .......

正如我所写,我不确定它是否会修复您的错误,因为我无法重现它。但是,我知道我的项目只有在我使用正确的提示时才能编译。当我不使用它时,我会得到一些 error MSB4019: The imported project "C:\Microsoft.Cpp.Default.props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.

关于c++ - 使用 Microsoft Visual C++ 构建工具的 CMake,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43413998/

相关文章:

C++ 无用友元函数声明

visual-c++ - 如何在MFC应用程序中动态创建对话框?

linux - 使用 -fPIC 重新编译 makefile

c++ - unsigned long 的类型不同于 Windows 上的 uint32_t 和 uint64_t (VS2010)

c++ - 错误 "Expression: string subscript is out of range"

windows - 如何在 cmake 中使用 add_test 传递 ${CTEST_CONFIGURATION_TYPE}

CMake:动态添加对 add_custom_command 的依赖

c++ - 我的 C++ ActiveMQ 客户端可以发送消息,但不能接收消息

c++ - 静态(可能是 constexpr)数据成员 l​​ambda

c++ - 在线程池中组织任务