不能运行 'rc.exe'( error LNK1158: cannot run 'rc.exe')

在使用vs2013跑cuda samples中查看GPU设备的程序deviceQuery时,出现如下错误:

1>------ Build started: Project: deviceQuery, Configuration: Debug x64 ------
1>     Creating library ../../bin/win64/Debug/deviceQuery.lib and object ../../bin/win64/Debug/deviceQuery.exp
1>LINK : fatal error LNK1158: cannot run 'rc.exe'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped 
  • 1
  • 2
  • 3
  • 4

原因是Microsoft在删掉一些系统的文件或程序时,还会残留一些东西在注册表里,所以在stackoverflow中,有人给出了解决方案,将系统中的rc.exercdll.dll

 C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin
  • 1

拷贝到

C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin
  • 1

不过在网上发现一种更简单的方法:

  • D:\Programs\Microsoft Visual Studio 12.0\Common7\IDE中找到devenv.exe。在cmd命令行中切换到该路径,使用命令devenv /ResetSettings将VS2013重置到初始设置。
  • 打开VS2013里面的属性->常规->平台工具,将v120改成v120_xp。
    这里写图片描述
    亲测可行。

你可能感兴趣的:(Windows,visual,studio,vs2013,rc.exe)