generated from koriym/ext-helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·72 lines (64 loc) · 1.02 KB
/
build.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
#!/bin/bash
clean() {
echo "Cleaning..."
make clean
phpize --clean
}
prepare() {
echo "Preparing..."
phpize
./configure CFLAGS="-g -O0"
}
build() {
echo "Building..."
make
}
install() {
echo "Installing..."
make install
}
run() {
echo "Run smoke..."
php -dextension=modules/rayaop.so -ddisplay_errors=1 smoke.php
}
demo() {
echo "Run demo..."
php -dextension=modules/rayaop.so -ddisplay_errors=1 demo/aop.php
}
debug() {
echo "Run demo..."
lldb -o run -- php -dextension=modules/rayaop.so -ddisplay_errors=1 Ray.Aop/demo/05-pecl.php
}
case $1 in
clean)
clean
;;
prepare)
prepare
;;
build)
build
;;
install)
install
;;
run)
run
;;
demo)
demo
;;
debug)
debug
;;
all)
clean
prepare
build
run
;;
*)
echo "Usage: $0 {clean|prepare|build|install|run|all}"
exit 1
;;
esac