본문 바로가기
반응형

C++ 에러5

LIBCMT.lib(crt0.obj) : error LNK2001: unresolved external symbol _main LIBCMT.lib(crt0.obj) : error LNK2001: unresolved external symbol _main 에러 (crt0.obj) : error LNK2001: unresolved external symbol _main 에러가 발생하였을 경우, Project Settings 을 확인하여 (crt0.obj) : error LNK2001: unresolved external symbol _main 에러를 잡을 수 있습니다. Project 설정에 보면 _ATL_MIN_CRT 라는 설정이 Preprocessor definitions 에 들어 가 있는 것을 알 수 있습니다. _ATL_MIN_CRT 문자를 지워서 컴파일을 하면 에러가 없이 컴파일이 됩니다. ATL/WTL의 위져드로 생성을 할 .. 2011. 1. 20.
[에러] uuid.lib(ocidl_i.obj) : fatal error LNK1103: debugging information corrupt; recompile module uuid.lib(comcat_i.obj) : fatal error LNK1103: debugging information corrupt; recompile module 환경사항 Windows XP Service pack 3 + Visual studio 6.0 + Platform SDK Server2003 R2 사용 에러 메시지 uuid.lib(ocidl_i.obj) : fatal error LNK1103: debugging information corrupt; recompile module Error executing link.exe. 해결책 C:\Program Files\Microsoft Platform SDK\Lib 폴더의 uuid.lib 파일의 이름을 삭제 또는 변경해주면 됩니다. 2010. 7. 19.
c:\program files\microsoft visual studio\vc98\include\utility(21) : fatal error C1076: compiler limit : internal heap limit reached; use /Zm to specify a higher limit c:\program files\microsoft visual studio\vc98\include\utility(21) : fatal error C1076: compiler limit : internal heap limit reached; use /Zm to specify a higher limit internal heap limit reached; use /Zm to specify a higher limit 위와 같이 Zm500 으로 컴파일 메모리를 늘려준다. 참고 사이트 : http://blog.naver.com/intencelove?Redirect=Log&logNo=20098282915 http://yunhyeon.tistory.com/160 c:\program files\microsoft visua.. 2010. 7. 14.
[ERROR] C++ One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. --------------------------- Microsoft Visual C++ --------------------------- One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program. --------------------------- 확인 --------------------------- 디버그 할 때 BP(브레이크 포인터) 설정 안될 경우가 발.. 2010. 7. 1.
반응형