|
: [C++ Warning] ComMainForm.cpp(3): W8058 Cannot create pre-compiled header: write failed
이건 말그대로 미리 컴파일되어 있는 헤더를 쓸 수 없다는 뜻입니다.
그냥 경고니까 무시해도 되고 Project->Option 에서 해당항목을 찾아 체크를 해제해도 됩니다.
: [C++ Error] CPort.hpp(683): E2238 Multiple declaration for '_fastcall EComPort::EComPort(int)'
: [C++ Error] CPort.hpp(675): E2344 Earlier declaration of '_fastcall EComPort::EComPort(int)'
: [C++ Error] CPort.hpp(695): E2238 Multiple declaration for '_fastcall EComPort::EComPort(int,int)'
: [C++ Error] CPort.hpp(674): E2344 Earlier declaration of '_fastcall EComPort::EComPort(int,int)'
: [C++ Error] CPortCtl.hpp(242): E2015 Ambiguity between 'TBitmap' and 'Windows::TBitmap'
이들은 CPort.hpp 파일을 열어서 해당항목을 찾아보면 쉽게 알 수 있습니다.
실제로 여러가지 항목이 중복 선언되어 있습니다.
똑같이 선언된 것들을 삭제하시면 됩니다.
|