安装 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> :
相关文章
- 07-21_MSC_VER 编译器版本
- 07-21Day4:编译型和解释型,idea的使用和配置
- 07-21编译原理-学习记录11
- 07-21(16)verilog 条件编译(FPGA不积跬步101)
- 07-21golang GO1111MODULE=on导致bee生成的工程无法编译
- 07-21脚本的基本编译
- 07-21iOS编译自动升级版本号脚本
- 07-21OpenH264编译与使用总结
- 07-21libraries – 查找已编译C程序的依赖项
- 07-21Boost神器:部分库无须编译,包含头文件即可直接使用