Last active
September 13, 2021 13:42
-
-
Save mostofreddy/1cc9a4618783f49c808a7811218de54b to your computer and use it in GitHub Desktop.
Compilacion PHP
This file contains hidden or 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
sudo apt install libxml2-dev \ | |
libssl-dev \ | |
libsqlite3-dev \ | |
zlib1g-dev \ | |
libcurl4-gnutls-dev \ | |
libpng-dev \ | |
libwebp-dev \ | |
libjpeg9-dev \ | |
libjpeg8-dev \ | |
libonig-dev \ | |
libsodium-dev \ | |
libargon2-dev \ | |
libxslt1-dev \ | |
libzip-dev | |
./configure \ | |
--prefix=/opt/php/php-8.0.9 \ | |
--enable-cli \ | |
--enable-fpm \ | |
--with-libxml \ | |
--with-openssl \ | |
--with-sqlite3 \ | |
--with-zlib \ | |
--enable-bcmath \ | |
--enable-calendar \ | |
--enable-ctype \ | |
--with-curl \ | |
--enable-dom \ | |
--enable-exif \ | |
--enable-fileinfo \ | |
--enable-filter \ | |
--enable-gd \ | |
--with-webp \ | |
--with-jpeg \ | |
--with-freetype \ | |
--with-gettext \ | |
--with-mhash \ | |
--with-iconv \ | |
--enable-intl \ | |
--enable-mbstring \ | |
--with-mysqli \ | |
--enable-opcache \ | |
--enable-opcache-jit \ | |
--enable-pcntl \ | |
--enable-pdo \ | |
--with-pdo-mysql \ | |
--with-pdo-sqlite \ | |
--enable-phar \ | |
--enable-session \ | |
--enable-simplexml \ | |
--enable-soap \ | |
--with-sodium \ | |
--with-password-argon2 \ | |
--enable-tokenizer \ | |
--enable-xml \ | |
--enable-xmlreader \ | |
--enable-xmlwriter \ | |
--with-xsl \ | |
--with-zip \ | |
--enable-mysqlnd \ | |
--with-pear \ | |
--with-config-file-scan-dir=/opt/php/php-8.0.9/etc/php.d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment