Print the value of STRICT and build_timeout.

(cherry-picked from commit 96c41271d8)
This commit is contained in:
pentarctagon 2018-04-20 12:35:45 -05:00 committed by Pentarctagon
parent 1ef1704fd9
commit 754b8a6221
2 changed files with 6 additions and 4 deletions

View file

@ -485,7 +485,7 @@ for env in [test_env, client_env, env]:
# # # #
# Determine optimization level # Determine optimization level
# # # #
if not env["opt"]: if not env["opt"]:
if env["build"] == "release": if env["build"] == "release":
env["opt"] = "-O3 " env["opt"] = "-O3 "
@ -494,9 +494,8 @@ for env in [test_env, client_env, env]:
else: else:
env["opt"] = "-O0 " env["opt"] = "-O0 "
else: else:
env["opt"] = env["opt"]+" " env["opt"] = env["opt"]+" "
# # # #
# Start determining options for debug build # Start determining options for debug build
# # # #

View file

@ -46,6 +46,9 @@ echo "BOOST_TEST: $BOOST_TEST"
echo "LTO: $LTO" echo "LTO: $LTO"
echo "SAN: $SAN" echo "SAN: $SAN"
echo "STRICT: $STRICT"
echo "build_timeout(mins): $build_timeout"
$CXX --version $CXX --version
if [ "$NLS" == "true" ]; then if [ "$NLS" == "true" ]; then