View Single Post
  #4  
Old 12-08-2006, 02:01 PM
kenjutsuka
Fire Beetle
 
Join Date: Oct 2006
Posts: 4
Default

Update: I thought it might have to do with my compilation of the zlib.lib but it turned out even using a different precompiled one that came with one of the downloads, it still threw all of the same linking problems, for instance,
<Compiler Output>
Error 48 error LNK2001: unresolved external symbol "public: __thiscall std::exception::exception(char const * const &)" (??0exception@std@@QAE@ABQBD@Z) libcpmt.lib
Error 116 error LNK2001: unresolved external symbol "const type_info::`vftable'" (??_7type_info@@6B@) libcpmt.lib
Error 202 error LNK2001: unresolved external symbol "public: virtual char const * __thiscall std::exception::what(void)const " (?what@exception@std@@UBEPBDXZ) StructStrategy.obj
Error 301 error LNK2001: unresolved external symbol "public: virtual __thiscall std::exception::~exception(void)" (??1exception@std@@UAE@XZ) dbasync.obj
Error 335 error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" (??3@YAXPAX@Z) XMLParser.obj
Error 479 error LNK2019: unresolved external symbol _memmove_s referenced in function "public: struct _Ctypevec __thiscall std::_Locinfo::_Getctype(void)const " (?_Getctype@_Locinfo@std@@QBE?AU_Ctypevec@@XZ) libcpmt.lib
</Compiler Output>
(Just to give an idea of what's going on here. And it's all to do with the object files.)
I'm not sure if I'm missing an important library file or maybe one of the headers is wrong, but I doubled checked everything and it's according to what you posted, I'm running through google looking up what other people have had this problem, but nothing terribly similar other than people who were missing a library file or trying to compile a single threaded app using msvcrt, etc. Lemme know what you thinks up or gimme a hint if ya could.

Thanks,
Kenjutsuka
Reply With Quote