linux编译安装php libevent扩展库

WBOY
Libérer: 2016-07-25 08:52:01
original
1059 Les gens l'ont consulté
linux编译安装php libevent扩展的方法,在php编程中实现高性能的网络服务,需要libevent扩展库的支持,本文通过编译源码的方式安装libevent扩展库。

php编写高性能网络服务,需要安装libevent扩展。

1、下载libevent扩展: http://pecl.php.net/package/libevent

2、解压后,开始编译

$ cd libevent-version $ /usr/local/php/bin/phpize $ ./configure --with-php-config=/usr/local/php/bin/php-config

报错,错误显示为re2c版本过低。 re2c,PHP的词法解析器,官网:http://re2c.org/,下载最新的版本,编译完成。 继续编译刚才的PHP扩展,仍然报错 error: Cannot find libevent headers

直到这里,肯定是没找到libevent的目录, 本地查看是否安装了libevent, 终于在一个目录下找到了libevent-2.0.12-stable目录。 3、如果未安装,则先需安装libevent。

wget http://cloud.github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz tar zxvf libevent-2.0.20-stable.tar.gz cd libevent-2.0.20-stable/ ./configure --prefix=/usr/local/libevent-2.0.20-stable/ make make install cd ../

4、继续编译扩展

$ cd libevent-0.0.5 $ /usr/local/php/bin/phpize $ ./configure --with-php-config=/usr/local/php/bin/php-config --with-libevent=/usr/local/libevent-2.0.20-stable $ make && make install

这次编译通过了。



Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!