On Mon, Mar 4, 2013 at 5:01 AM, Sebastian Wolff wrote: > > I modified the specs according to the Jon's summary of your recommendations, > i.e.: > - use -lmsvcr90 instead of -lmsvcrt > - use -static > - avoid linking against -lmoldname > - use the define -D__MSVCRT_VERSION__=0x0900 when compiling *.cpp >
In order to avoid multiple runtime DLLs based on your new specs file you'll need to ensure that every DLL being used by the program is in fact using the same runtime DLL. If you want to use the static versions be sure to use -static as well as -static-gcclib or -static-libstdc++ if you're doing C++. -- Earnie -- https://sites.google.com/site/earnieboyd ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_feb _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
