You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
341 B

#!/usr/bin/env bash
# Installs the latest xdebug extensions
#
## Official builds
wget http://pecl.php.net/get/xdebug
mkdir xdebug-extension
tar zxvf xdebug -C xdebug-extension --strip-components=1
## Git master
#git clone https://github.com/xdebug/xdebug.git xdebug-extension
#cd xdebug-extension
phpize
./configure
make -j4
make install