에러(error) 

[ error 화면 ]

(kor) 
[디버깅 정보 없음]
'xxx'의 디버깅 정보를 찾을 수 없거나 정보가 일치하지 않습니다. 이진 파일이 디버그 정보를 사용하여 빌드되지 않았습니다. 디버깅을 계속하시겠습니까?
(eng) 
[No Debugging Information]
Debugging information for 'xxx' cannot be found or does not match. Binary was not built with debug information. Do you want to continue debugging?

 

개발환경(platform)

visual studio 2008 (vs2008)

 

원인(cause) 

현재 개발 중인 프로젝트(project)의 디버깅(debugging)정보가 활성화되어 있지 않기 때문에 발생한 에러이다.

 

해결(solution)

 

[ Project Properties 화면 ]

(vs2008, vs2010)
project에서 우클릭 > Configuration Properties > Linker > Debugging > General Debug Info > Yes (/DEBUG)

(vs2015)
project에서 우클릭 > Configuration Properties > Linker > Debugging > General Debug Info > true

※ 현재 내 경우 해당 문제를 위처럼 에러를 넘어갈 수 있었지만, 동일한 에러에 대해 다른 상황에서도 발생할 수 있는 것 같다. 참고를 위해 URL을 남긴다. [StackOverflow 링크, Postring 링크]