What does fatal compile error C1083: Cannot open source file mean?

跟風遠走 提交于 2019-12-13 03:55:59

问题


Error 1 fatal error C1083: Cannot open source file: 'FpDebug/BalanceGrabber.pch': No such file or directory c1xx


回答1:


Is one of your cpp files configured to generate the precompiled header? I think this is missing. In the project settings/makefile or whatever you use you have to create the pch (precompiled header) first!




回答2:


Check your path: specifically, does FpDebug/BalanceGrabber.pch exist?

Or can you specify an absolute path for that .pch file? i.e., C:\development\FpDebug/BalanceGrabber.pch




回答3:


The error message is given because a source file is not found during compilation/linking. You nee to check the spelling of the names and the search paths. And of course, check if the file is at the requested location.



来源:https://stackoverflow.com/questions/1587254/what-does-fatal-compile-error-c1083-cannot-open-source-file-mean

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!