Shiju, you can solve your problem here via a trick. It is a bit ugly, but should serve you well.
Add to your VC compiled code at one place the following lines and take sure you included proper headers for those symbols. For 32-bit use the following code: void *_imp__toupper = toupper; void *_imp___fstat = _fstat; void *_imp___vsnprintf = _vsnprintf; One 64-bit the symbol decoration is different and so you would need the following lines here: void *__imp_toupper = toupper; void *__imp__fstat = _fstat; void *__imp__vsnprintf = _vsnprintf; Regards, Kai ------------------------------------------------------------------------------ RSA(R) Conference 2012 Save $700 by Nov 18 Register now http://p.sf.net/sfu/rsa-sfdev2dev1 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
