Skip to content

Commit 029f174

Browse files
authored
Support trace log at make.sh (swoole#4332)
1 parent 70b2664 commit 029f174

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

make.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ if [ "$1" = "help" ] ;then
6262
echo "./make.sh install-module"
6363
echo "./make.sh clean"
6464
echo "./make.sh debug"
65+
echo "./make.sh trace"
6566
echo "./make.sh library [dev]"
6667
echo "./make.sh"
6768
exit 0
@@ -70,6 +71,8 @@ fi
7071
phpize
7172
if [ "$1" = "debug" ] ;then
7273
./configure ${COMPILE_PARAMS} --enable-debug-log
74+
elif [ "$1" = "trace" ] ;then
75+
./configure ${COMPILE_PARAMS} --enable-trace-log
7376
else
7477
./configure ${COMPILE_PARAMS}
7578
fi

0 commit comments

Comments
 (0)