< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index Next in Thread >

Re: [reSIProcate] Help building small MFC dialog based program to test DUM



On Sep 14, 2004, at 16:47, kaiduan xie wrote:

Use of MFC: Use standard windows library
Run time library: Multi-threaded Debug (/MTd)

The Visual C++.NET version is Version 7.1.3088. If I
changed Use of MFC to "Use MFC in static library or
Use MFC in shared DLL", more errors came out.


Sounds like you have changed a compiler switch to use a debugging threading library. This library contains an implementation of:
        void* operator new(size_t,...);
        void operator delete(void*,...);
        void operator delete[](void*,...);

Causing multiply defined symbols. Consider trying to link without the /MTd switch.

A


a l a n a t j a s o m i d o t c o m