make was not working on my Windows machine. Based on the error messages I got, this thread indicated that the issue was a conflict with defining isinf and #include <math.h>. After moving #include <math.h> after isinf, I was able to successfully run make.
make was not working on my Windows machine. Based on the error messages I got, this thread indicated that the issue was a conflict with defining
isinf
and#include <math.h>
. After moving#include <math.h>
afterisinf
, I was able to successfully run make.