php 扩展 debug问题

Posted taek

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 扩展 debug问题相关的知识,希望对你有一定的参考价值。

 php安装时为debug模式

./configure  --prefix=/usr/local/php7.1.6-debug --with-curl --with-pcre-regex --enable-fpm --enable-opcache=no --enable-sockets --enable-debug

php扩展也为debug模式

vim config.m4

if test -z "$PHP_DEBUG" ; then
        AC_ARG_ENABLE(debug, [--enable-debug compile with debugging system], [PHP_DEBUG=$enableval],[PHP_DEBUG=no] )
fi

 

/usr/local/php7.1.6-debug/bin/phpize  &&  ./configure --with-php-config=/usr/local/php7.1.6-debug/bin/php-config --enable-debug && make && make install

 

但在 /usr/local/php7.1.6-debug/bin/php -m|grep yac时,提示

Module compiled with build ID=API20160303,NTS

PHP compiled with build ID=API20160303,NTS, DEBUG

These options need to match

in Unknown on line 0

 

很奇怪, yac模块安装时已经指定为debug,

后来查了 这篇文章, 意思 是说 在安装 php之后 ,安装yac时,没有执行make clean, 导致新的编译选项没有生效

 

解决:

执行make clean

再重新安装 yac 模块, 就好了

 

以上是关于php 扩展 debug问题的主要内容,如果未能解决你的问题,请参考以下文章

linux php添加扩展库

phpstudy+phpstorm+debug

Laravel基本使用

XDebug分析php代码性能

mac中怎样通过brew 安装php的redis扩展

laravel 整合 swoole ,并简单 ab 测试对比性能以及在 PHPstorm 中利用debug调试配置swoole服务中的PHP代码