fatal error C1010:  unexpected end of file while looking for precompiled header directive

A precompiled header was specified, but it did not contain a precompiled header directive

This error can be caused by specifying an incorrect file as a header file,or by specifying an

include file with the /Yu (Use Precompiled Header) command line option that is not listed

 in the source file as an include file.


致命错误C1010:在寻找预编译指示头文件时,文件未预期结束。 就是没有找到预编译指示信息的头文件。 问题一般发生在:通过添加文件的方式,添加了一些cpp文件到一个MFC的程序,但该cpp文件并不是MFC,而是标准的C++。 解决方案1: 右键单击项目工程中的cpp文件,在菜单Project->Settings->C/C++->Precompile Header,设置为第一项:Not using precompile headers。 解决方案2:在.cpp文件开头添加包含文件stdafx.h。 #include"stdafx.h"