Miro Kropacek wrote:
This workaround seems to work: #define ceilf(x) ceil(x)That means there's no float (single precision) version of this function in our math lib. Mentioned workaround is probably ok (ceil() returns double, i.e. bigger precision) but sure, it's annoying.
This is the good workaround.ceilf() is not part of the ANSI C standard, it is not present in PML. I don't know if it is present in fdlibm. These libm limitations are annoying, we should definitely get a complete and reliable libm.
-- Vincent Rivière