C1083:Cannot open precompiled header file: 'Debug/<Project-Name>.pch': No such file or directory
This error results from a missing file -the compiled version of StdAfx.cpp. Visual C++ does a poor job of keeping
track of this file and frequently "forgets" how to build it.
This problem often occurs after restoring a saved workspace from diskette without the Debug directory.
To fix the error select StdAfx.cpp from the workspace file list them choose Compile from the Build menu.
If that doesn't work the go to Project -Settings, select the C/C++ tab, and click the radio button labeled Create
Precompiled Headers.
本文介绍了解决Visual C++中C1083错误的方法,该错误通常由于丢失了预编译头文件而引发。文章提供了具体的步骤来修复此问题,包括重新编译StdAfx.cpp文件和调整项目设置。

833

被折叠的 条评论
为什么被折叠?



