CODEDRAGON ㆍDevelopment/C, C++
오류메시지
Error C1010 unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source?
Severity Code Description Project File Line Suppression State Error C1010 unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source? ch-basic c:\codelab\git_study\study_cpp\ch-basic\ch-basic\ex05.cpp 44 |
오류 원인
· VisualStudio에 있는 VC++외의 다른 컴파일러에서 빌드한 경우 발생할 수 있습니다.
· 다른 스타일로 작성된 라이브러리를 링크하면 에러가 발생할 수 있습니다.
· 빠른 빌드를 위한 PCH (precompiled header) 설정시 에러가 발생할 수 있습니다.
해결 방법
VS 메뉴: [Project] >> [ProjectName Properties...] >>
왼쪽 창 [Configuration Properties] > [C/C++] > [Precompiled Headers]
오른쪽 창의 "Precompiled Header"의
[Use (/Yu)]를 [Not Using Precompiled Headers] 로 변경합니다.
'Development > C, C++' 카테고리의 다른 글
feof( ) 함수 - 파일의 끝을 확인 (0) | 2019.05.17 |
---|---|
매크로 함수 – 매크로 함수 정의, 매크로 함수의 장/단점, 매크로 함수의 특징 (0) | 2019.04.28 |
fprintf( ) 함수와 fscanf( ) 함수 - 자료형 단위의 표준 입출력 함수 (0) | 2019.04.16 |
Visual Studio 2019 설치하기 (2) | 2019.04.10 |
Visual Studio 2019 - download(설치파일 다운받기) (1) | 2019.04.04 |