macos12 编译安装 xdebug
macOS 12 编译安装 xdebug
之前使用macOS 一直用的是Mamp Pro的集成环境,最近公司的项目操作配置文件比较多,不得已要自己搭建服务器,只能自己手动的搭环境,所以一直在尝试,分享一下经验吧
系统说明
操作系统: macos 12
php 版本: php 7.3
下载 xdebug
git clone git://github.com/xdebug/xdebug.git
编译安装
cd xdebug
/usr/local/Cellar/php@7.3/7.3.33_1/bin/phpize
./configure --with-php-config=/usr/local/Cellar/php@7.3/7.3.33_1/bin/php-config --enable-xdebug
make && make install