I'm using MinGW 4.8.0 (posix, dwarf-2) for building c++ code. Looking with dumpbin
I noticed the MinGW links to msvcrt.dll
that on my on Windows 7 is at the version 7.0.7601.17744 and on Windows Xp SP3 is at version 7.0.2600.5512.
Well I want that MinGW links to a newer version to Microsoft C Runtime library so I've two choice: use a precompiled version of MinGW that arleady links to newr C Runtime or rename for example msvcrt110.dll
to msvcrt.dll
and deply the application with that library.
What do you think?