1 Star 0 Fork 345

冲击 / swoole-src

forked from swoole / swoole-src 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make.sh 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
宇润 提交于 2021-02-03 15:52 . Fix make.sh (#4038)
#!/bin/sh -e
__DIR__=$(cd "$(dirname "$0")";pwd)
COMPILE_PARAMS="--enable-openssl --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-json --enable-swoole-curl"
if [ "$(uname | grep -i darwin)"x != ""x ]; then
CPU_COUNT="$(sysctl -n machdep.cpu.core_count)"
else
CPU_COUNT="$(/usr/bin/nproc)"
fi
if [ -z ${CPU_COUNT} ]; then
CPU_COUNT=4
fi
cd "${__DIR__}"
if [ "$1" = "cmake" ] ;then
phpize
./configure ${COMPILE_PARAMS}
cmake .
make -j ${CPU_COUNT}
exit 0
fi
if [ "$1" = "clean" ] ;then
make clean
phpize --clean
exit 0
fi
if [ "$1" = "install-module" ] ;then
make ext-swoole
__EXT_DIR__=$(php-config --extension-dir)
cp lib/swoole.so "${__EXT_DIR__}"
echo "cp lib/swoole.so ${__EXT_DIR__}"
exit 0
fi
if [ "$1" = "library" ] ;then
set -e
cd ${__DIR__}
set +e
echo "rm ext-src/php_swoole.lo"
rm -f ext-src/php_swoole.lo
echo "rm ext-src/php_swoole_library.h"
rm -f ext-src/php_swoole_library.h
set -e
if [ "$2" = "dev" ] ;then
/usr/bin/env php tools/build-library.php dev
else
/usr/bin/env php tools/build-library.php
fi
echo "remake..."
make
echo "done"
exit 0
fi
if [ "$1" = "help" ] ;then
echo "./make.sh cmake"
echo "./make.sh install-module"
echo "./make.sh clean"
echo "./make.sh debug"
echo "./make.sh library [dev]"
echo "./make.sh"
exit 0
fi
phpize
if [ "$1" = "debug" ] ;then
./configure ${COMPILE_PARAMS} --enable-debug-log
else
./configure ${COMPILE_PARAMS}
fi
make clean
make -j ${CPU_COUNT}
if [ "$(whoami)" = "root" ]; then
make install
else
sudo make install
fi
C
1
https://gitee.com/1273640670/swoole.git
git@gitee.com:1273640670/swoole.git
1273640670
swoole
swoole-src
master

搜索帮助