You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the make command, the build fails with the following error:
src/glove.c:36:10: fatal error: pthread.h: No such file or directory
36 | #include <pthread.h>
| ^~~~~~~~~~~
compilation terminated.
make: *** [build/glove.o] Error 1
When I look in to the glove.c file, the comment says the #define fixes it but it doesn't:
// windows pthread.h is buggy, but this #define fixes it
#define HAVE_STRUCT_TIMESPEC
#include <pthread.h>
I would appreciate any help.
The text was updated successfully, but these errors were encountered:
When running the make command, the build fails with the following error:
src/glove.c:36:10: fatal error: pthread.h: No such file or directory
36 | #include <pthread.h>
| ^~~~~~~~~~~
compilation terminated.
make: *** [build/glove.o] Error 1
When I look in to the glove.c file, the comment says the #define fixes it but it doesn't:
// windows pthread.h is buggy, but this #define fixes it
#define HAVE_STRUCT_TIMESPEC
#include <pthread.h>
I would appreciate any help.
The text was updated successfully, but these errors were encountered: