获取编译错误:0x2尝试打开文件<vfdmsg> </vfdmsg>

时间:2009-08-18 21:04:19

标签: c++ compiler-errors

我正在尝试构建http://chitchat.at.infoseek.co.jp/vmware/vfd.html(VS 2008,Windows Server 2008 x64)但是我收到以下错误消息:

Error   1   error : 0x2 trying to open file <vfdmsg>.   mc  lib
Error   2   error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\lib\vfdmsg.mc"    lib lib
Error   3   error : 0x2 trying to open file <vfdmsg>.   mc  cmd
Error   4   error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\cmd\vfdmsg.mc"    cmd cmd
Error   5   error : 0x2 trying to open file <vfdmsg>.   mc  gui
Error   6   error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\gui\vfdmsg.mc"    gui gui

我安装了Windows 2008 SDK并且我已经用Google搜索了一段时间,但我不知道我的生活中弄清楚这个错误意味着什么。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:3)

我已经注意到vfdmsg.mc的构建步骤是:

mc $(InputName)

$(InputName)解析为vfdmsg,而不是vfdmsg.mc

通过使用以下构建步骤替换它来修复:

mc $(InputFileName)