0

嗨,我尝试在 macox(Big Sur 11.5.2)上通过 pecl 安装 xdebug 但我收到错误消息

xdebug volodymyr$ pecl install xdebug
downloading xdebug-3.0.4.tgz ...
Starting to download xdebug-3.0.4.tgz (215,870 bytes)
.............................................done: 215,870 bytes
87 source files, building
running: phpize
Configuring for:
PHP Api Version:         20190902
Zend Module Api No:      20190902
Zend Extension Api No:   320190902
Undefined subroutine &main::open_quote called at /usr/local/bin/autom4te line 262.
ERROR: `phpize' failed

我更新了 perl,但它确实帮助了我(如果 open_quote 是 perl 的一部分,我无法理解)而且我在互联网上没有找到任何与 open_quote 函数问题相关的信息

我尝试从源代码安装 xdebug 并在 ./phpize 步骤中得到相同的错误

解决: 只需重新安装我运行的autoconf automake libtool brew reinstall autoconf automake libtool 之后我运行brew link --force autoconf它就解决了问题

4

1 回答 1

2

这里的错误来自 autom4te,而不是peclor ./phpize。您需要更新automakeautoconf,和/或相关软件包。

于 2021-09-26T08:52:53.860 回答