libevent CentOS7 编译

旧街凉风 提交于 2020-01-27 01:25:23

安装 libevent 出错: event.c error: ‘CLOCK_MONOTONIC’ undeclared
checking build system type… configure: error: cannot guess build type; you must specify one
–build=arm-linux
在编译 libevent-1.2 源码时, make 出错:
event.c:157:20: error: ‘CLOCK_MONOTONIC’ undeclared (first use in this function)
if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1)
^
出错原因是: 在 event.c 文件中 CLOCK_MONOTONIC 没有定义.
解决办法 : 在网上搜了下, 是缺少头文件了, CLOCK_MONOTONIC 定义在 time.h 头文件中. 所以可以直接修改源码:
在 event.c 中引用头文件: #include <time.h> :

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!