PECL APC 安装 --- 错误:‘make’失败

PECL APC 安装 --- 错误:‘make’失败

运行时出现以下错误sudo pecl install apc

/var/tmp/APC/apc_cache.c: In function '_apc_cache_user_update':
/var/tmp/APC/apc_cache.c:818: error: 'IS_CONSTANT_INDEX' undeclared (first use in this function)
/var/tmp/APC/apc_cache.c:818: error: (Each undeclared identifier is reported only once
/var/tmp/APC/apc_cache.c:818: error: for each function it appears in.)
/var/tmp/APC/apc_cache.c:820: error: 'IS_CONSTANT_ARRAY' undeclared (first use in this function)
make: *** [apc_cache.lo] Error 1
ERROR: `make' failed

我有php 5.5.12已安装,并且以下库都是最新的:

sudo yum install php-pear
sudo yum install php-devel
sudo yum install httpd-devel
sudo yum install gcc
sudo yum install pcre-devel
sudo pecl install apc-beta

谢谢!

答案1

APC 不支持 PHP 5.5,其最新更新版本是 5.4,自此之后除了 2012 年的错误修复外,再没有更新过。

如果您确实想让它与 5.5 一起工作,您可以尝试将 IS_CONSTANT_ARRAY 和 IS_CONSTANT_INDEX 重新定义为 IS_CONSTANT_AST,因为这已经取代了它们,但是,如果它最终编译成功,这并不能保证。

相关内容