执行cl.exe时出错

时间:2012-03-03 03:13:35

标签: c++ crash

尝试编译这个游戏,我收到了这个错误:

Error executing cl.exe.

这是输出日志。 http://pastebin.com/qjjWr5tE

相关信息是:

dragon.cpp
c:\documents and settings\xpmuser\desktop\client\dragon.cpp(13) : fatal error C1083:
    Cannot open include file: 'FPS.h': No such file or directory

这是主标题。

http://pastebin.com/AyvUKen7

1 个答案:

答案 0 :(得分:2)

给出错误消息:

dragon.cpp
c:\documents and settings\xpmuser\desktop\client\dragon.cpp(13) : fatal error C1083:
    Cannot open include file: 'FPS.h': No such file or directory

问题是dragon.cpp中的代码包含一行:

#include "FPS.h"

并且编译器无法找到该名称的标头。

查看文件dragon.cpp并确定它是否真的需要FPS.h。如果没有,请删除该行。如果是,则必须找到该文件。您正在编译的其他文件似乎都没有使用它,因此不清楚您是否真的需要它。