在centos6上编译tor。 libevent 的问题
Posted
技术标签:
【中文标题】在centos6上编译tor。 libevent 的问题【英文标题】:compile tor on centos6. Problems with libevent 【发布时间】:2017-10-17 11:05:03 【问题描述】:我有干净的centos6系统,尝试从源代码编译tor。 第一种方式(通过 yum 安装 libevent)。我愿意:
yum install libevent2
yum install libevent2-devel
...
(inside tor folder): ./configure
make
并得到错误:
src/common/libor-event.a(compat_libevent.o): In function `tor_gettimeofday_cache_clear':
/root/tor-0.3.1.7/src/common/compat_libevent.c:250: undefined reference to `event_base_update_cache_time'
collect2: ld returned 1 exit status
make[1]: *** [src/or/tor] Error 1
make[1]: Leaving directory `/root/tor-0.3.1.7'
make: *** [all] Error 2
第二种方式(从源代码安装 libevent)。
yum remove libevent2
yum remove libevent2-devel
..
(from libevent folder): ./configure
make
make install
..
(from tor folder): ./configure
并得到错误:
checking whether we need extra options to link libevent... configure: error: Found linkable libevent in (system), but it does not seem to run, even with -R. Maybe specify another using --with-libevent-dir
那么,我做错了什么?)下一步该怎么做?
【问题讨论】:
os 确切版本:Linux 版本 2.6.32-696.13.2.el6.x86_64 (mockbuild@c1bl.rdu2.centos.org) (gcc 版本 4.4.7 20120313 (Red Hat 4.4.7- 18) (海合会)) 【参考方案1】:您可能错过了将 libevent 库添加到库选项中
LDFLAGS+=-L[path of the libevent.so] -levent
make 的输出是什么?
【讨论】:
你的意思是在配置时添加它?它不支持它。但它支持--with-libevent-dir。它有助于配置,但 make 仍然显示错误。输出在这里:pastebin.com/EmLNaVUL 在这种情况下,您应该检查 config.log,设置了哪些库标志。检查事件日志时发生了什么。make V=1
提供了有关执行何种命令的更多信息
呵呵,太难了))。我安装了 ubuntu 并在那里编译没有任何问题...... Centos 是邪恶的))以上是关于在centos6上编译tor。 libevent 的问题的主要内容,如果未能解决你的问题,请参考以下文章