rtti enabled and /EHsc

I'm trying to build an MFC application with c++ (synchronous) exceptions and rtti enabled. It is a port of an application written with evc4.0 (sp4).

The problem I'm having is when linking, I get the following linker error:

error LNK2001: unresolved external symbol "const type_info::`vftable'" (?_7type_info@@6B@) mfcs80ud.lib

This message repeats multiple times for all of my obj files. I know in evc4 there was a patch made available that one could link into his project to provide the linker with this information. Does anyone know how to make this work with VS2005 SmartDevices Native C++?

Thanks for any insight,
Dylan

[725 byte] By [DylanRobbins] at [2008-1-13]
# 1
Okay, after some digging, I found that it is similar to evc4. Including ccrtrtti.lib in the project's linker input settings (additional dependencies) fixes this issue.

Dylan

DylanRobbins at 2007-8-21 > top of Msdn Tech,Smart Device Development,Smart Devices Native C++ Development...