目前xdebug你不支持arm 只能自编译
pecel 安装是arm64
arch -arm64 sudo pecl install xdebug
编译
git clone https://github.com/xdebug/xdebug.git
cd xdebug
phpize
./configure --enable-xdebug --host=arm-linux-gnueabi
make
make install
修改 配置
- 生成的位置:
- xdebug/modules/xdebug.so
- 配置文件
- /opt/homebrew/etc/php/8.2
[xdebug]
zend_extension= /opt/homebrew/Cellar/php/8.2.6/pecl/20220829/xdebug.so
xdebug.mode=debug
debug.client_host=127.0.0.1
xdebug.start_with_request=yes
xdebug.idekey=PHPSTROM
标签:xdebug,make,编译,mac,8.2,M2,PHP,arm
From: https://www.cnblogs.com/guanchaoguo/p/17476983.html