用现有的pcre编译nginx?

时间:2012-08-06 08:23:38

标签: ubuntu nginx pcre

我总是像这样安装nginx:

wget ...nginx...
tar zxvf ...
cd nginx...
./configure --with-pcre=../pcre_source_path
make && make install

nginx和pcre将安装到/ usr / local /

但现在我想将它们安装到/ usr / local / lnmp /,所以我尝试像这样配置nginx:

./configure --with-pcre=../pcre_source_path --prefix=/usr/local/lnmp/nginx/

然后我很困惑:我的pcre安装在哪里?我找到了/ usr / local / share / doc / pcre所以我认为它安装在/ usr / local /

然后我尝试独立安装pcre,所以我这样做了:

wget ...pcre
tar zxvf pcre...
cd pcre...
./configure --prefix=/usr/local/lnmp/pcre
make && make install

使用上面的命令,我成功地将pcre安装到/usr/local/lnmp/pcre/,但是我无法使用那个pcre编译nginx ...(我尝试了./configure --with-pcre=/usr/local/lnmp/pcre/,但它给了我一个错误,因为它必须是--with-pcre=[pcre_source_path]

1 个答案:

答案 0 :(得分:3)

在这种情况下,在针对自定义编译库(例如pcre,zlib和OpenSSL)编译nginx时,必须使用选项--with-cc-opt--with-ld-opt

在您描述的情况下,configure命令应为:

./configure --prefix=/usr/local/lnmp/nginx/ --with-cc-opt="-I /usr/local/lnmp/pcre/include" --with-ld-opt="-L /usr/local/lnmp/pcre/lib"

更多参考资料:Nginx forumNginx docs (installing)