forked from swoole/swoole-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.sh
executable file
·83 lines (72 loc) · 1.56 KB
/
make.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/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