其他分享
首页 > 其他分享> > 在VS 2015命令提示符中找不到c – rc.exe

在VS 2015命令提示符中找不到c – rc.exe

作者:互联网

我刚刚安装了Windows 10 Creators Update(版本10.0.15063).

我安装了多个版本的Visual Studio(2012年,2013年,2015年和2017年).我几周前才安装了VS 2017.

问题

在“VS2015 x64本机命令提示符”中运行时,CMake(版本3.8.1)不再找到C/C++编译器(在VS 2017命令提示符下运行时它可以正常工作).

再生产

CMakeLists.txt的内容:

project (test)
add_executable (test test.cpp)

(test.cpp的内容无关紧要.)

在VS2015 x64本机命令提示符中进行CMake调用:

> mkdir build
> cd build
> cmake -G "Visual Studio 14 2015 Win64" ..

CMake输出:

-- The C compiler identification is unknown
-- The CXX compiler identification is unknown
CMake Error at CMakeLists.txt:1 (project):
  No CMAKE_C_COMPILER could be found.

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

-- Configuring incomplete, errors occurred!
See also "D:/dev/cmaketest/build/CMakeFiles/CMakeOutput.log".
See also "D:/dev/cmaketest/build/CMakeFiles/CMakeError.log".

分析

查看CMakeFiles / CMakeError.log时,失败的原因很明显:

ClCompile:
  C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc140.pdb" /Gd /TC /errorReport:queue CMakeCCompilerId.c
  CMakeCCompilerId.c
Link:
  C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj
LINK : fatal error LNK1158: cannot run 'rc.exe' [D:\dev\cmaketest\build\CMakeFiles\3.8.1\CompilerIdC\CompilerIdC.vcxproj]

找不到rc.exe(资源编译器).实际上,在相同的VS 2015命令提示符中:

> where rc.exe
INFO: Could not find files for the given pattern(s).

虽然它在VS 2013命令提示符中找到:

> where rc.exe
C:\Program Files (x86)\Windows Kits\8.1\bin\x64\rc.exe
C:\Program Files (x86)\Windows Kits\8.1\bin\x86\rc.exe

和VS 2017命令提示符:

> where rc.exe
C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64\rc.exe

在各种VS命令提示符中检查PATH环境变量的内容:

>在VS 2013命令提示符内,PATH包含

C:\Program Files (x86)\Windows Kits\8.1\bin\x64

>在VS 2017命令提示符内,PATH包含

C:\Program Files (x86)\Windows Kits\10\bin\x64
C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64

>但在VS 2015命令提示符中,PATH仅包含

C:\Program Files (x86)\Windows Kits\10\bin\x64

其中不包含rc.exe.

问题

>这是一个已知问题还是特定于我的系统?
> Windows 10 Creators Update可能会在系统中安装,卸载或更改(可能是与Windows SDK相关的东西)会触发此问题?
>什么是解决这个问题的干净方法?

编辑:安装VS 2017组件:

VS 2017 components installed

解决方法:

花了一些时间在安装了Win10 Creators Edition和VS2010,VS2013,VS2015和VS2017的三台机器上看这个,它在两台机器上运行,在第三台机器上运行失败.所有都有VS2015 Update 3,所有应该都安装了相同的选项.

运行以下批处理文件

C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat

应该为VS2015 x64环境设置正确的环境.这应该添加

C:\Program Files (x86)\Windows Kits\10\bin\x64

到了PATH.这是rc.exe应该在的地方.但是在我失败的机器上,rc.exe从这里丢失了,但确实存在

C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64

我回去后觉得这是一个设置问题我重新运行VS2015 Update 3设置并告诉它添加

Windows和Web开发 – >通用Windows应用程序开发工具 – >工具(1.4.1)和Windows 10 SDK(10.0.14393)

这导致rc.exe和相关文件出现

C:\Program Files (x86)\Windows Kits\10\bin\x64

运行rc -v on

C:\Program Files (x86)\Windows Kits\10\bin\10.0.15063.0\x64\rc.exe

C:\Program Files (x86)\Windows Kits\10\bin\x64\rc.exe

给出了相同的版本号10.0.10011.16384

不确定为什么原始安装中缺少rc.exe,但重新运行安装并添加其他SDK为我修复了它.看起来像

C:\Program Files (x86)\Windows Kits\10\bin\x64\rc.exe

应该是默认的rc.exe,但它不是由以前的安装设置的.

标签:c,windows,windows-10,cmake,visual-studio-2017
来源: https://codeday.me/bug/20191003/1850645.html