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.