nginx模块LuaJIT编译安装问题解决
作者: 曲文庆 日期: 2013-03-19 11:19
环境:
nginx-1.2.7.tar.gz
LuaJIT-2.0.1.tar.gz
按照正常流程对LuaJIT-2.0.1.tar.gz编译,make;make install
编译nginx
export LUAJIT_LIB=/usr/local/lib
export LUAJIT_INC=/usr/local/include/luajit-2.0
./configure --prefix=/usr/local/nginx --add-module=exp/lua-nginx-module/ 其他模块参数略
此时会报告错误
checking for LuaJIT library in /usr/local/lib and /usr/local/include/luajit-2.0 (specified by the LUAJIT_LIB and LUAJIT_INC env) ... not found ./configure: error: the ngx_lua addon requires the lua or luajit library and LUAJIT_LIB is defined as /usr/local/lib and LUAJIT_INC /usr/local/include/luajit-2.0, but we cannot find LuaJIT there.
但是查看相应目录及文件都存在,对错误细节内容追踪,在 objs/autoconf.err 中包含
>> checking for LuaJIT library in /usr/local/lib and
>> /usr/local/include/luajit-2.0 (specified by the LUAJIT_LIB and LUAJIT_INC
>> env)
>>
>> /usr/local/lib/libluajit-5.1.a(lj_clib.o): In function `lj_clib_unload':
>> lj_clib.c:(.text+0x9d): undefined reference to `dlclose'
>> /usr/local/lib/libluajit-5.1.a(lj_clib.o): In function `clib_error_':
>> lj_clib.c:(.text+0xb5): undefined reference to `dlerror'
>> /usr/local/lib/libluajit-5.1.a(lj_clib.o): In function `lj_clib_load':
>> lj_clib.c:(.text+0x1bf): undefined reference to `dlopen'
>> lj_clib.c:(.text+0x214): undefined reference to `dlerror'
>> lj_clib.c:(.text+0x2ec): undefined reference to `dlopen'
>> lj_clib.c:(.text+0x2fd): undefined reference to `dlerror'
>> /usr/local/lib/libluajit-5.1.a(lj_clib.o): In function `lj_clib_index':
>> lj_clib.c:(.text+0x47e): undefined reference to `dlsym'
>> collect2: ld 返回 1
通过该提示,可以在 configure 后追加 --with-ld-opt=-ldl 解决编译问题,并能顺利通过,但是不建议自己指定-ldl选项,因为会导致其他问题。
那能否不指定这个选择,顺利完成编译呢?
通过对LuaJIT编译过程分析,发现LuaJIT在编译中未找到ldconfig,分析为此原因导致
编辑 Makefile文件,找到ldconfig位置(75行)
原内容是:LDCONFIG= ldconfig -n
修改为:LDCONFIG= /sbin/ldconfig -n
然后对LuaJIT重新make install
此时再编译nginx,一切顺利。
评论: 0 |
引用: 0 |
阅读: 17891
Installing cgit with nginx on CentOS 5.4 (2014-05-15 18:06)
nginx如何处理web请求 (2012-11-09 22:11)
CentOS下Nginx支持CGI (2012-04-13 13:38)
nginx 漏洞 (2011-08-26 10:52)
关于cacti的spine 0.8.7g不能取到nginx client值 (2011-04-12 17:35)
Centos 5下搭建redmine项目管理软件 (2011-03-28 09:33)
nginx文件类型错误解析漏洞 (2010-05-21 14:47)
80后爆nginx 0day漏洞,上传图片可入侵100万服务器 (2010-05-21 14:46)
Nginx配置PHP的一个关键注意点 (2009-02-02 17:20)