PHP7发布了,但是如何编译呢?

WBOY
Release: 2016-06-06 20:23:13
Original
1230 people have browsed it

windows上如何编译最新发布的php?

回复内容:

windows上如何编译最新发布的php?

Windows上编译安装PHP教程请看:
https://wiki.php.net/internals/windows/stepbystepbuild
以5.4为例:
PHP 5.4(源代码+依赖库+SDK工具) + Visual Studio 2008 + Windows SDK 6.1
http://windows.php.net/downloads/releases/php-5.4.45-src.zip
http://windows.php.net/downloads/php-sdk/deps-5.4-vc9-x86.7z
http://windows.php.net/downloads/php-sdk/php-sdk-binary-tools-20110915.zip
https://www.microsoft.com/en-us/download/details.aspx?id=11310 (启动Windows SDK 6.1安装程序后,需要下载1.2G的数据和3GB的磁盘空间)
http://download.microsoft.com/download/E/8/E/E8EEB394-7F42-4963-A2D8-29559B738298/VS2008ExpressWithSP1ENUX1504728.iso 英文版
http://download.microsoft.com/download/3/0/2/3025EAE6-2E15-4972-972A-F5B1ED248E85/VS2008ExpressWithSP1CHSX1504735.iso 中文版
注意顺序!先安装Windows SDK 6.1及其service packs和security updates,
然后安装Visual Studio 2008 Express Edition SP1(运行Setup.hta,选择安装Visual C++ 2008).

开始菜单打开 Windows SDK v6.1 CMD shell 执行 setenv /x86 /xp /release
创建目录C:\php-sdk,并把php-sdk-binary-tools解压到这个目录.
cd C:\php-sdk\
bin\phpsdk_buildtree.bat phpdev
把PHP源代码解压到C:\php-sdk\phpdev\vc9\x86,比如:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src
把deps-5.4-vc9-x86.7z解压到
C:\php-sdk\phpdev\vc9\x86\deps
开始编译:
cd C:\php-sdk\
bin\phpsdk_setvars.bat (设置环境变量,否则configure时会提示找不到bison之类的工具)
cd C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src
buildconf
如果出现 输入错误: 没有文件扩展“.js”的脚本引擎。
regedit 把 [HKEY_CLASSES_ROOT\.js] 项下的那个默认值改成JSFile
重新执行 buildconf 就可以生成 configure.js 了.
configure --help
configure --disable-zts --disable-all --enable-cli
执行 nmake 编译, 编译后生成的二进制文件位于:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src\Release
运行 nmake snap 打包:
C:\php-sdk\phpdev\vc9\x86\php-5.4.45-src\Release\php-5.4.45-nts-Win32-VC9-x86.zip
重新编译:
nmake clean 清除旧的二进制文件
rd /s /q Release
buildconf --force 生成新的configure.js脚本
configure --disable-zts --disable-all --enable-cli
nmake

解压即用,跨Linux发行版PHP7打包(附编译打包方法)
PHP7发布了,但是如何编译呢?

https://wiki.php.net/phpng

<code>#安装编译PHP依赖的开发工具和库:
sudo apt-get install \
build-essential \
autoconf \
libtool \
re2c \
libxml2-dev \
openssl \
libcurl4-openssl-dev \
libbz2-dev \
libjpeg-dev \
libpng12-dev \
libfreetype6-dev \
libldap2-dev \
libmcrypt-dev \
libmysqlclient-dev \
libxslt1-dev \
libxt-dev \
libpcre3-dev \
libxpm-dev \
libt1-dev \
libgmp-dev \
libpspell-dev \
librecode-dev \
libreadline6-dev 

#配置脚本 configure_php.sh
#!/bin/bash
./configure \
--prefix=/png/php/7.0.0 \
--enable-opcache \
--enable-fpm \
--enable-pdo \
--enable-sockets \
--enable-exif \
--enable-soap \
--enable-ftp \
--enable-wddx \
--enable-pcntl \
--enable-soap \
--enable-bcmath \
--enable-mbstring \
--enable-dba \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--enable-zip \
--enable-calendar \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--with-mysqli \
--with-pdo-mysql \
--with-pdo-sqlite \
--with-iconv \
--with-gmp \
--with-pspell \
--with-xmlrpc \
--with-openssl \
--with-mhash \
--with-mcrypt \
--with-xsl \
--with-curl \
--with-pcre-regex \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-zlib-dir=/usr \
--with-xpm-dir=/usr \
--with-freetype-dir=/usr \
--with-gettext=/usr \
--with-zlib=/usr \
--with-bz2=/usr \
--with-recode=/usr \
--with-ldap \
--with-pear \
--with-readline \
--with-fpm-user=png \
--with-fpm-group=png \
--with-apxs2=/png/httpd/2.4.17/bin/apxs

#编译安装
make && make install</code>
Copy after login

官网目前还没有提供编译好的版本,而目前官方可下载的源码也不是支持Windows的,不过PHP源码库中有Windows编译的内容。
送个地址,官方编译的DLL地址,目前最新的是 7.0 RC8 的版本
http://windows.php.net/qa/

如果是Linux编译环境或者Mac OS X环境,可以参考我的文章http://segmentfault.com/a/1190000004065931

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!