unexpected end of file while looking for precompiled header directive : compile error
I.T/Programming 2011. 4. 21. 16:12반응형
Visual C++ 6.0을 쓰는 도중.....
fatal error C1010: unexpected end of file while looking for precompiled header directive
가 뜬금없이 났다 -_-;;; 이 에러의 위치는..... main함수의 괄호가 없다라는 둥의 메세지던데 -_-;;;
졸라 짜증이..... 났지만.. 문제는 따른 곳에 있었다.
문법에 해당되는 오류가 아니였다. 메세지는 문법오류라고 해놓고는 닝기리~~
해결방법은 헤더파일이나 설정문제였다.
기존과는 다르게 싱글프로젝트로 생성을 하였더니.....
#include "stdafx.h"
기본적으로 위와 같은 헤더파일이 등록되고 Include 되었었다.
근데 그냥 난 빼버렸거든 -_-;;;; 지우고....그래서 해결은....
1. 해당 소스파일에 stdafx.h를 포함하고 재컴파일 하던지....
2. 아니면 Project->Settings->C/C++탭->Category의 Precompiled Headers
Automatic use of precompiled headers선택후 재컴파일한다.
unexpected end of file while looking for precompiled header directive
있는 그대로 믿지말자 -_-;;
반응형
'I.T > Programming' 카테고리의 다른 글
C++ study : cctype 관련 (0) | 2011.05.16 |
---|---|
C++ study : get, getline, cin, cout, struct, union, enum, new, delete ... (0) | 2011.05.13 |
함수오버로딩, 디폴트인자, 함수템플릿 (0) | 2011.04.08 |
함수를 가리키는 포인터변수 (0) | 2011.04.08 |
참조 전달 인자 '&' (0) | 2011.04.08 |