我在使用 MAMP 在 Mac OSX 上构建/安装 XDebug 时遇到问题。
到目前为止,我在网上进行了广泛的搜索,目前我被 XDebug“安装向导”的一部分困住了,它告诉我在我下载的源代码上“运行:phpize”。
当我运行时,phpize
我收到以下消息:
new-host-2:xdebug-2.2.0 Dima$ phpize
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
Configuring for:
PHP Api Version:
Zend Module Api No:
Zend Extension Api No:
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.
如果我这样做,which phpize
我会得到:
new-host-2:xdebug-2.2.0 Dima$ which phpize
/usr/bin/phpize
这不是我想使用的版本,我想使用phpize
我假设的 MAMP 安装版本,因为我想在 PHP 的 MAMP 版本上安装 XDebug。这令人费解,因为我已将 MAMP 特定的 PHP bin 路径添加到我的 .bash_profile 到$PATH
变量中。
如果我跑步,echo $PATH
我会得到:
new-host-2:xdebug-2.2.0 Dima$ echo $PATH
/opt/local/bin:/opt/local/sbin:/Applications/MAMP/bin/php/php5.4.3/bin:/Users/Dima/.rvm/gems/ruby-1.9.2-p290/bin:/Users/Dima/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/Dima/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/Dima/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
MAMP 特定的 PHP 路径显示在“/usr/bin”之前。我尝试的下一件事是运行特定于 MAMPphpize
的手动提供整个路径,如下所示:
new-host-2:xdebug-2.2.0 Dima$ /Applications/MAMP/bin/php/php5.4.3/bin/phpize
-bash: /Applications/MAMP/bin/php/php5.4.3/bin/phpize: Permission denied
现在我在 Finder 中检查了这些文件的权限,它表明我拥有读取和写入此文件夹中文件的完全权限。我有点失落。任何帮助将不胜感激。如果有助于诊断此问题,我可以发布任何其他信息。