-
Notifications
You must be signed in to change notification settings - Fork 340
Open
Description
Trying to build on windows with msys2 (mingw-w64
) fails with:
checking for working strtod... yes
checking for atexit... yes
checking for realpath... no
configure: error: The realpath function cannot be found.
From what I understand from this issue, realpath is actually not a standard ansi/posix function and therefore mingw-w64 does not implement it.
This topic seems to have a working version of realpath for windows. Perhaps we could include that within a #ifdef win32
or so?
AlttiRi