-O1 / 2/3 con -std = c ++ 1y / 11/98 - Si se incluye <cmath> obtengo un error: '_hypot' no se declaró en este ámbito

Acabo de actualizar MinGW usandomingw-get-setup&nbsp;y no puedo construir nada que contenga<cmath>&nbsp;encabezado si uso algo más grande que-O0&nbsp;con-std=c++1y. (También intentéc++11&nbsp;yc++98) Recibo errores como este:

g++.exe -pedantic-errors -pedantic -Wextra -Wall -std=c++1y -O3  -c Z:\Projects\C++\L6\src\events.cpp -o obj\src\events.o
In file included from z:\lander\mingw\lib\gcc\mingw32\4.8.1\include\c++\cmath:44:0,
                 from Z:\Projects\C++\L6\src\utils.h:4,
                 from Z:\Projects\C++\L6\src\events.cpp:10:
z:\lander\mingw\include\math.h: In function 'float hypotf(float, float)':
z:\lander\mingw\include\math.h:635:30: error: '_hypot' was not declared in this scope
 { return (float)(_hypot (x, y)); }

¿Hay algo mal de mi parte?
¿O la versión en mingw repo está defectuosa? Y si es así, ¿hay alguna solución rápida para este encabezado?