Name | Modified | Size | Downloads / Week |
---|---|---|---|
README_MinGW.txt | 2016-10-29 | 995 Bytes | |
MinGW5302v3.tar.7z | 2016-10-29 | 35.1 MB | |
MinGW5302v2.tar.7z | 2016-10-08 | 35.1 MB | |
MinGW5302.tar.7z | 2016-08-20 | 35.7 MB | |
mingw_4_8_1-4.tar.7z | 2014-06-02 | 35.9 MB | |
mingw4_5_0.7z | 2012-08-11 | 14.8 MB | |
Totals: 6 Items | 156.6 MB | 0 |
This is the README for the unofficial MinGW distributions. MinGW version 5.3.0-2 comes with gdb and grep in the bin directory, as I found they are my two most useful tools when it comes to working with code. There is a bug in the first version of MinGW 5.3.0-2 in mingw/include/math.h. It incorrectly references _hypot on line 635. This bug triggers compilation failure when compiling in c++11 mode and cmath or math.h is included. You can fix it by removing the leading underscore from _hypot and changing it to hypot. Fix for line 635 of mingw/include/math.h : { return (float)(hypot (x, y)); } 10/08/2016 : I've included mingwrt 3.22 and win32api 3.18 to fix issues when compiling with the C++11 standard. Please update your package. The _hypot bug is fixed in the latest release as well in version 2 (v2). 10/29/2016 I've updated mingwrt to v3.22.4 to address compilation issues with the C++11 standard and Allegro 5. Please update your package to MinGW5302v3.tar.7z.