Created
September 10, 2023 06:20
-
-
Save sfinktah/09cd959d40d0b295b268db3bc65d01a6 to your computer and use it in GitHub Desktop.
Building PHP 8.1 on Centos 8.5
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 dnf install autoconf automake binutils bison curl-devel freetype-devel gcc \ | |
gcc-c++ git glibc-devel libjpeg-devel libpng-devel libtool libwebp-devel \ | |
libxml2-devel libzip-devel make openssl-devel sqlite-devel | |
sudo yum install re2c oniguruma-devel --enablerepo=powertools | |
git clone https://github.com/php/php-src.git --branch=PHP-8.1.23 | |
cd php-src | |
./buildconf | |
make -j 4 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment