加入收藏 | 设为首页 | 会员中心 | 我要投稿 云计算网_泰州站长网 (http://www.0523zz.com/)- 视觉智能、AI应用、CDN、行业物联网、智能数字人!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

分享编译php源码错误集与处理方案

发布时间:2022-07-19 14:01:04 所属栏目:PHP教程 来源:互联网
导读:起步 服务器Ubuntu14.04已后lamp开发环境,却还是没有不能顺利编译php源码,在此整理编译过程。 获取源码与编译 确保已安装了gitsudo apt-get install git -y,因为这可以看到PHP每次修改的内容及日志信息和跟进作者的更新。 git clone https://github.com/p
  起步
  服务器Ubuntu14.04已后lamp开发环境,却还是没有不能顺利编译php源码,在此整理编译过程。
 
  获取源码与编译
  确保已安装了gitsudo apt-get install git -y,因为这可以看到PHP每次修改的内容及日志信息和跟进作者的更新。
 
  git clone https://github.com/php/php-src.git
 
  cd php-src
 
  sudo apt-get install build-essential
 
  ./sapi/cli/php -v
 
  -v参数表示输出版本号,如果命令执行完后看到输出php版本信息则说明编译成功。
 
  1bccdb69ac82e663b588de791c76528.png
 
  错误集
  错误
 
 
  configure: error: xml2-config not found. Please check your libxml2 installation.
 
  解决
  apt-get install libxml2-dev
 
  错误
 
 
  /usr/bin/mysql_config: No such file or directory
 
  解决
  apt-get install mysql-server mysql-client libmysqlclient-dev
 
  错误
 
 
 
  Warning: Declaration of PEAR_Installer::download() should be compatible with & PEAR_Downloader::download($params) in phar:///root/php7/php-src/pear/install-pear-nozlib.phar/PEAR/Installer.php on line 43
   Warning: Declaration of PEAR_Task_Replace::init() should be compatible with PEAR_Task_Common::init($xml, $fileAttributes, $lastVersion) in phar:///root/php7/php-src/pear/install-pear-nozlib.phar/PEAR/Task/Replace.php on line 31
 
  [PEAR] XML_Util - installed: 1.2.3
 
   
 
  Warning: Declaration of PEAR_Task_Windowseol::init() should be compatible with PEAR_Task_Common::init($xml, $fileAttributes, $lastVersion) in phar:///root/php7/php-src/pear/install-pear-nozlib.phar/PEAR/Task/Windowseol.php on line 76
 
   
 
  Warning: Declaration of PEAR_Task_Unixeol::init() should be compatible with PEAR_Task_Common::init($xml, $fileAttributes, $lastVersion) in phar:///root/php7/php-src/pear/install-pear-nozlib.phar/PEAR/Task/Unixeol.php on line 76
 
  [PEAR] PEAR - installed: 1.9.5
 
  Wrote PEAR system config file at: /root/php7/usr/etc/pear.conf
 
  checking for bison version... invalid
 
  configure: WARNING: This bison version is not supported for regeneration of the Zend/PHP parsers (found: none, min: 204, excluded: ).
 
  checking for re2c... no
 
  configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
 
  configure: error: bison is required to build PHP/Zend when building a GIT checkout!
 
  解决
  apt-get install bison
 
  checking for BZip2 in default path… not found
 
  configure: error: Please reinstall the BZip2 distribution
 
  解决
  apt-get install libbz2-dev
 
  错误
 
  错误
 
 
 
  If configure fails try --with-vpx-dir=
 
  configure: error: jpeglib.h not found.
 
  解决
  apt-get install libjpeg-dev
 
  错误
 
 
  configure: error: png.h not found.
 
  解决
  apt-get install libpng12-dev
 
  错误
 
 
  configure: error: freetype-config not found.
 
  解决
  apt-get install libfreetype6-dev
 
  错误
 
 
  configure: error: mcrypt.h not found. Please reinstall libmcrypt.
 
  解决
  apt-get install libmcrypt-dev
 
  错误
 
 
  configure: error: Cannot find pspell
 
  解决
  apt-get install libpspell-dev
 
  checking for recode support... yes
 
  configure: error: Can not find recode.h anywhere under /usr /usr/local /usr /opt.
 
  解决
  apt-get install librecode-dev

(编辑:云计算网_泰州站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读