Skip to content

Commit

Permalink
Support trace log at make.sh (#4332)
Browse files Browse the repository at this point in the history
  • Loading branch information
doubaokun authored Jul 21, 2021
1 parent 70b2664 commit 029f174
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ if [ "$1" = "help" ] ;then
echo "./make.sh install-module"
echo "./make.sh clean"
echo "./make.sh debug"
echo "./make.sh trace"
echo "./make.sh library [dev]"
echo "./make.sh"
exit 0
Expand All @@ -70,6 +71,8 @@ fi
phpize
if [ "$1" = "debug" ] ;then
./configure ${COMPILE_PARAMS} --enable-debug-log
elif [ "$1" = "trace" ] ;then
./configure ${COMPILE_PARAMS} --enable-trace-log
else
./configure ${COMPILE_PARAMS}
fi
Expand Down

0 comments on commit 029f174

Please sign in to comment.