Created
June 23, 2013 02:27
-
-
Save luxixing/5843486 to your computer and use it in GitHub Desktop.
php编译选项
报错一般就是扩展依赖的库不存在,查找并且安装即可
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./configure\ | |
--with-config-file-path=/usr/local\ | |
--with-config-file-path=/usr/local/etc/php\ | |
--enable-fpm\ | |
--with-fpm-user=php-fpm\ | |
--with-fpm-group=php-fpm\ | |
--enable-mysqlnd\ | |
--with-mysqli\ | |
--with-pdo-mysql\ | |
--with-mysql=mysqlnd\ | |
--with-zlib\ | |
--with-xmlrpc\ | |
--with-pcre-regex\ | |
--with-openssl\ | |
--with-curl\ | |
--with-gettext\ | |
--with-png\ | |
--with-jpeg\ | |
--with-freetype\ | |
--enable-exif\ | |
--with-gd\ | |
--enable-gd-native-ttf \ | |
--enable-mbstring\ | |
--enable-ftp\ | |
--enable-calendar\ | |
--enable-sockets\ | |
--enable-soap\ | |
--enable-opcache\ | |
--enable-pcntl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment