1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Configure: print enabled/disable sanitizer. v5.0.206 (#3923)

---------

Co-authored-by: chundonglinlin <chundonglinlin@163.com>
This commit is contained in:
john 2024-02-05 12:16:05 +08:00
parent 55026a4fc7
commit 96a8d17573
3 changed files with 8 additions and 1 deletions

6
trunk/configure vendored
View file

@ -841,6 +841,12 @@ if [[ $SRS_VALGRIND == YES ]]; then
else
echo -e "${GREEN}Note: The valgrind is disabled.${BLACK}"
fi
if [[ $SRS_SANITIZER == YES ]]; then
echo -e "${GREEN}The sanitizer is enabled.${BLACK}"
else
echo -e "${GREEN}Note: The sanitizer is disabled.${BLACK}"
fi
# add each modules for application
for SRS_MODULE in ${SRS_MODULES[*]}; do
echo -e "${GREEN}Enable module: $SRS_MODULE${BLACK}"