VC++ linker errors on std::exception::_Raise and std::exception::exception - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:03:54Z http://stackoverflow.com/feeds/question/249607 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249607/vc-linker-errors-on-stdexceptionraise-and-stdexceptionexception 0 VC++ linker errors on std::exception::_Raise and std::exception::exception Jim Buck 2008-10-30T08:51:10Z 2008-10-31T16:15:35Z <p>I am using Visual C++ 2005 Express Edition and get the following linker errors:</p> <pre><code>19&gt;mylib1.lib(mylibsource1.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::exception::_Raise(void)const " (__imp_?_Raise@exception@std@@QBEXXZ) referenced in function "protected: static void __cdecl std::vector&lt;class mytype,class std::allocator&lt;class mytype&gt; &gt;::_Xlen(void)" (?_Xlen@?$vector@Vmytype@@V?$allocator@Vmytype@@@std@@@std@@KAXXZ) 19&gt;mylib2.lib(mylibsource2.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::exception::_Raise(void)const " (__imp_?_Raise@exception@std@@QBEXXZ) 19&gt;mylib1.lib(mylibsource1.obj) : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall std::exception::exception(char const *,int)" (__imp_??0exception@std@@QAE@PBDH@Z) referenced in function "public: __thiscall std::logic_error::logic_error(class std::basic_string&lt;char,struct std::char_traits&lt;char&gt;,class std::allocator&lt;char&gt; &gt; const &amp;)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z) 19&gt;mylib2.lib(mylibsource2.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall std::exception::exception(char const *,int)" (__imp_??0exception@std@@QAE@PBDH@Z) </code></pre> <p>I turned off exceptions in generated code, and I am using before including the vector header file:</p> <pre><code>#define _HAS_EXCEPTIONS 0 </code></pre> <p>A few Google results turned up some stuff, but no "aha!" solutions that worked for me.</p> <p>EDIT:</p> <p>As noted "_HAS_EXCEPTIONS 0" doesn't turn off exceptions, per se. What it does is, at least in the vector header file, is call _Raise on an exception object instead of calling the C++ "throw". In my case, it can't link to the exception object's _Raise function since I am not including the correct library. What that library is, though, is not obvious.</p> http://stackoverflow.com/questions/249607/vc-linker-errors-on-stdexceptionraise-and-stdexceptionexception/249685#249685 0 Answer by MSalters for VC++ linker errors on std::exception::_Raise and std::exception::exception MSalters 2008-10-30T09:44:59Z 2008-10-30T09:44:59Z <p>The third error makes it clear that <code>#define the _HAS_EXCEPTIONS 0</code> does not affect . Now, might include (makes sense, sharing code might reduce the size of your executable). That would explain why you still have errors if you define it before <em>your</em> inclusion of . This kind of defines should be done in your project settings.</p> <p>Note that _HAS_EXCEPTIONS is an unsupported feature in Visual Studio. It does not turn off exceptions as such.</p> http://stackoverflow.com/questions/249607/vc-linker-errors-on-stdexceptionraise-and-stdexceptionexception/254069#254069 1 Answer by Jim Buck for VC++ linker errors on std::exception::_Raise and std::exception::exception Jim Buck 2008-10-31T16:15:35Z 2008-10-31T16:15:35Z <p>Adding this line:</p> <pre><code>#define _STATIC_CPPLIB </code></pre> <p>before including the vector header seems to do the trick.</p>