Benjamin Ducke wrote: > > > Indeed: MinGW and VC DLLs do not mix well, > > > > In what way? > > The problems are mostly with linking compiled C++ > code. Due to the different name mangling schemes, > a DLL produced by VC might not be usable by > an EXE produced with MinGW and vice versa.
It isn't the name-mangling per se that's the problem. Unlike C, C++ doesn't have a defined ABI, so code generated by one compiler typically won't be compatible with code generated by another compiler. The differences in name mangling are so that you don't accidentally use incompatible libraries. -- Glynn Clements <[email protected]> _______________________________________________ grass-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-dev
