From 37772e6708cbbe5d149cb48222be7dc881c87e8a Mon Sep 17 00:00:00 2001 From: Thiago Ize Date: Mon, 13 Jan 2025 11:38:32 -0700 Subject: [PATCH] Show warnings by default --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 376fac113a..49b95e98bc 100644 --- a/SConstruct +++ b/SConstruct @@ -49,7 +49,7 @@ vars.AddVariables( PathVariable('BUILD_DIR', 'Directory where temporary build files are placed by scons', 'build', PathVariable.PathIsDirCreate), PathVariable('REFERENCE_DIR', 'Directory where the test reference images are stored.', 'testsuite', PathVariable.PathIsDirCreate), EnumVariable('MODE', 'Set compiler configuration', 'opt', allowed_values=('opt', 'debug', 'profile')), - EnumVariable('WARN_LEVEL', 'Set warning level', 'none', allowed_values=('strict', 'warn-only', 'none')), + EnumVariable('WARN_LEVEL', 'Set warning level', 'warn-only', allowed_values=('strict', 'warn-only', 'none')), EnumVariable('COMPILER', 'Set compiler to use', ALLOWED_COMPILERS[0], allowed_values=ALLOWED_COMPILERS), PathVariable('SHCXX', 'C++ compiler used for generating shared-library objects', None), EnumVariable('CXX_STANDARD', 'C++ standard for gcc/clang.', '11', allowed_values=('11', '14', '17', '20')),