./examples/go.c:787:5: error: unknown type name 'fd_set'; did you mean 'fpos_t'?
解决:
go.c文件中添加头文件 #include <sys/select.h>
./include/darknet.h:781:5: error: unknown type name 'clock_t'; did you mean 'clockid_t'?
解决:
darknet.h文件添加#include <time.h>
标签:name,windows,unknown,darknet,mingw64,go,include,type From: https://www.cnblogs.com/zzc-Andy/p/16715630.html