Miguel..

i do not have VC2010 but as my memory recalls the
C runtime library (MSVCRT*.dll) would be the first library on %PATH% .. and all 
missing functions *should* be located inside the dll (e.g. __CrtSetReportFile )

can you
1) locate MSVCRT*.dll on your %PATH%
2) dumpbin -exports MSVCRT*.dll

Saludos Cordiales (desde EEUU)
Martin 
______________________________________________ 
Porfavor no altere esta communicacion..Gracias

> Date: Tue, 19 Jun 2012 10:24:48 -0400
> Subject: Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 
> 2010 Express
> From: chamael...@gmail.com
> To: renit...@gmail.com
> CC: mysql@lists.mysql.com
> 
> On Tue, Jun 19, 2012 at 2:48 AM, Miguel Cardenas <renit...@gmail.com> wrote:
> > Hello friends
> > 1>mysqlclient.lib(dbug.obj) : error LNK2019: unresolved external
> > symbol __CrtSetReportFile referenced in function _DbugExit
> > 1>mysqlclient.lib(my_init.obj) : error LNK2001: unresolved external
> > symbol __CrtSetReportFile
> > 1>mysqlclient.lib(dbug.obj) : error LNK2019: unresolved external
> > symbol __CrtSetReportMode referenced in function _DbugExit
> > 1>mysqlclient.lib(my_init.obj) : error LNK2001: unresolved external
> > symbol __CrtSetReportMode
> > 1>mysqlclient.lib(my_init.obj) : error LNK2019: unresolved external
> > symbol __CrtDumpMemoryLeaks referenced in function _my_end
> > 1>mysqlclient.lib(my_init.obj) : error LNK2019: unresolved external
> > symbol __CrtCheckMemory referenced in function _my_end
> >
> > Do I have to include an aditional library so the symbols are resolved
> > correctly? The release mode works perfect and the application runs
> > fine in that way only...
> 
> The missing functions should be provided by the Visual Studio debug
> runtime library. Are all source files in your own code compiled and
> program linked with one, and only one, of the flags /MDd (dynamic
> linking) or /MTd (static linking)?
> 
> Lars Nilsson
> 
> -- 
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:    http://lists.mysql.com/mysql
> 
                                          

Reply via email to