Vistaul Studio 2015 def 파일 추가
구성 속성 -> 링커 -> 입력 -> 모듈 정의 파일 에 추가할 정의 파일(.def)이름 추가
(Configuration Properties -> Linker-> Input -> Additional Dependencies)
모듈 정의 파일을 추가한 뒤 아래와 같은 에러가 발생할 수 있다.
MSDN 을 참조하여 에러 이유를 찾아 보았다.
[출처 : MSDN]
If the LNK2001 diagnostic text reports that __check_commonlanguageruntime_version is an unresolved external symbol, see LNK2019 for information on how to resolve.
LNK 2001 에러는 .def 파일에 있는 함수명이 틀리거나 존재하지 않는 함수라 뜨는 에러이다. 대소문자도 전부 구별한다고 하니 정확히 작성해보자.
'Etc > Solution' 카테고리의 다른 글
Window Crash Dump 남기기 (0) | 2016.08.01 |
---|---|
DLL Debugging (0) | 2016.05.11 |
virtualbox 설치 에러 (0) | 2016.03.13 |
VM Ware 비정상 종료로 인한 문제 해결법 (0) | 2016.03.10 |
VMware 실행 시 Disk 100% 되는 문제 해결법 (0) | 2016.02.29 |