fatal error C1010 fatal error C1010: unexpected end of file while looking for precompiled header directive 문제발생시 해결방법.. VC++은 파일 하나를 컴파일 할때 INCLUDE해야 할 파일이 너무 많아서 컴파일이 늦어지는 것을 막기위해 precompiled header라는 것을 만들었습니다. 이 헤더 파일(보통 stdafx.h)을 include한 .cpp는 미리 만들어진 precompiled header를 기본으로 사용하게 되어 있습니다. 하지만 다른 컴파일러로 만들어진 라이브러리(소스)에는 이런 것이 없겠죠. 그럼에도 VC++ 컴파일러가 자기는 precompiled header가 필요하다고 저런 이상한 메시지를 냅니..