mdserver-web/plugins/php/versions/common/xdebug.sh

128 lines
3.1 KiB
Bash
Raw Permalink Normal View History

2019-11-29 03:25:44 -05:00
#!/bin/bash
2023-11-08 12:32:59 -05:00
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin
2023-11-10 05:47:32 -05:00
export PATH=$PATH:/opt/homebrew/bin
2019-11-29 03:25:44 -05:00
curPath=`pwd`
rootPath=$(dirname "$curPath")
rootPath=$(dirname "$rootPath")
rootPath=$(dirname "$rootPath")
rootPath=$(dirname "$rootPath")
serverPath=$(dirname "$rootPath")
sourcePath=${serverPath}/source/php
2023-08-13 02:10:08 -04:00
SYS_ARCH=`arch`
2019-11-29 03:25:44 -05:00
LIBNAME=xdebug
2025-07-20 04:12:19 -04:00
LIBV=3.4.5
2019-11-29 03:25:44 -05:00
sysName=`uname`
actionType=$1
version=$2
2021-12-03 03:54:44 -05:00
2025-07-20 05:02:27 -04:00
if [ "$version" == "85" ];then
echo "not need"
exit 1
fi
2022-07-11 10:24:44 -04:00
if [ "$version" -lt "70" ];then
2022-07-11 10:19:54 -04:00
LIBV=2.2.7
2022-07-09 05:49:25 -04:00
fi
2025-07-20 04:13:04 -04:00
if [ "$version" -le "80" ];then
2022-07-11 10:24:44 -04:00
LIBV=2.7.0
fi
2024-04-17 06:47:30 -04:00
if [ "$version" -gt "80" ];then
2025-07-20 04:15:20 -04:00
LIBV=3.4.5
2022-07-14 12:06:50 -04:00
fi
2022-07-15 07:38:07 -04:00
LIB_PATH_NAME=lib/php
2022-07-15 07:44:23 -04:00
if [ -d $serverPath/php/${version}/lib64 ];then
2022-07-15 07:24:17 -04:00
LIB_PATH_NAME=lib64
fi
2022-07-15 07:38:07 -04:00
NON_ZTS_FILENAME=`ls $serverPath/php/${version}/${LIB_PATH_NAME}/extensions | grep no-debug-non-zts`
extFile=$serverPath/php/${version}/${LIB_PATH_NAME}/extensions/${NON_ZTS_FILENAME}/${LIBNAME}.so
2021-12-03 03:54:44 -05:00
2020-07-11 12:15:16 -04:00
if [ "$sysName" == "Darwin" ];then
BAK='_bak'
else
BAK=''
fi
2019-11-29 03:25:44 -05:00
Install_lib()
{
2022-07-12 11:19:22 -04:00
isInstall=`cat $serverPath/php/${version}/etc/php.ini|grep "${LIBNAME}.so"`
2019-11-29 03:25:44 -05:00
if [ "${isInstall}" != "" ];then
2019-11-30 03:55:45 -05:00
echo "php-$version 已安装${LIBNAME},请选择其它版本!"
2019-11-29 03:25:44 -05:00
return
fi
if [ ! -f "$extFile" ];then
php_lib=$sourcePath/php_lib
mkdir -p $php_lib
2019-11-29 12:24:28 -05:00
if [ ! -d $php_lib/${LIBNAME}-${LIBV} ];then
2023-10-31 13:47:45 -04:00
if [ ! -f $php_lib/${LIBNAME}-${LIBV}.tgz ];then
wget --no-check-certificate -O $php_lib/${LIBNAME}-${LIBV}.tgz http://pecl.php.net/get/${LIBNAME}-${LIBV}.tgz
fi
2019-11-29 12:24:28 -05:00
cd $php_lib && tar xvf ${LIBNAME}-${LIBV}.tgz
2023-10-31 13:47:45 -04:00
fi
2019-11-29 12:24:28 -05:00
cd $php_lib/${LIBNAME}-${LIBV}
2023-08-13 02:10:08 -04:00
OPTIONS=""
if [ "${SYS_ARCH}" == "aarch64" ] && [ "$version" -lt "56" ];then
OPTIONS="$OPTIONS --build=aarch64-unknown-linux-gnu --host=aarch64-unknown-linux-gnu"
fi
2019-11-29 12:24:28 -05:00
2019-11-29 03:25:44 -05:00
$serverPath/php/$version/bin/phpize
2023-08-13 02:10:08 -04:00
./configure --with-php-config=$serverPath/php/$version/bin/php-config $OPTIONS
2022-07-14 10:53:46 -04:00
make clean && make && make install && make clean
2019-11-29 05:29:23 -05:00
2023-10-30 13:25:11 -04:00
cd $php_lib && rm -rf $php_lib/${LIBNAME}-${LIBV}
2019-11-29 03:25:44 -05:00
fi
if [ ! -f "$extFile" ];then
echo "ERROR!"
return
fi
echo "" >> $serverPath/php/$version/etc/php.ini
echo "[${LIBNAME}]" >> $serverPath/php/$version/etc/php.ini
2022-06-30 14:49:45 -04:00
echo "zend_extension=${LIBNAME}.so" >> $serverPath/php/$version/etc/php.ini
2019-11-29 03:25:44 -05:00
2023-11-10 06:20:23 -05:00
cd ${curPath} && bash ${rootPath}/plugins/php/versions/lib.sh $version restart
2019-11-29 03:25:44 -05:00
echo '==========================================================='
echo 'successful!'
}
Uninstall_lib()
{
if [ ! -f "$serverPath/php/$version/bin/php-config" ];then
echo "php-$version 未安装,请选择其它版本!"
return
fi
if [ ! -f "$extFile" ];then
echo "php-$version 未安装${LIBNAME},请选择其它版本!"
echo "php-$version not install ${LIBNAME}, Plese select other version!"
return
fi
2020-07-11 12:15:16 -04:00
sed -i $BAK "/${LIBNAME}.so/d" $serverPath/php/$version/etc/php.ini
sed -i $BAK "/${LIBNAME}/d" $serverPath/php/$version/etc/php.ini
2019-11-29 03:25:44 -05:00
rm -f $extFile
2023-11-10 06:20:23 -05:00
cd ${curPath} && bash ${rootPath}/plugins/php/versions/lib.sh $version restart
2019-11-29 03:25:44 -05:00
echo '==============================================='
echo 'successful!'
}
if [ "$actionType" == 'install' ];then
Install_lib
elif [ "$actionType" == 'uninstall' ];then
Uninstall_lib
fi