Hi, __C_specific_handler function is an export of msvcrt. Therefore it means that you either are linking multiple-times msvcrt-runtime DLLs, or one of your own DLL-files is also exporting '__C_specific_handler' as symbol.
Easiest attempt to fix this is by keeping order of objects and libaries as gcc's frontend would order them. It is always a bad idea to include an general import-library before a user-library, as it means that the symbols in import-library won't be resolved in user-library, if they are in user-library first used. Regards, Kai ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
