VC++ linker errors on std::exception::_Raise and std::exception::exception - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T14:03:54Zhttp://stackoverflow.com/feeds/question/249607http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249607/vc-linker-errors-on-stdexceptionraise-and-stdexceptionexception0VC++ linker errors on std::exception::_Raise and std::exception::exceptionJim Buck2008-10-30T08:51:10Z2008-10-31T16:15:35Z
<p>I am using Visual C++ 2005 Express Edition and get the following linker errors:</p>
<pre><code>19>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<class mytype,class std::allocator<class mytype> >::_Xlen(void)" (?_Xlen@?$vector@Vmytype@@V?$allocator@Vmytype@@@std@@@std@@KAXXZ)
19>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>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<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0logic_error@std@@QAE@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@1@@Z)
19>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#2496850Answer by MSalters for VC++ linker errors on std::exception::_Raise and std::exception::exceptionMSalters2008-10-30T09:44:59Z2008-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#2540691Answer by Jim Buck for VC++ linker errors on std::exception::_Raise and std::exception::exceptionJim Buck2008-10-31T16:15:35Z2008-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>