簡體   English   中英

執行cl.exe時出錯

[英]Error executing cl.exe

試圖編譯這個游戲,我收到這個錯誤:

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

給出錯誤消息:

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 如果沒有,請刪除該行。 如果是,則必須找到該文件。 您正在編譯的其他文件似乎都沒有使用它,因此不清楚您是否真的需要它。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM