Browse Source

Merge pull request #89159 from Repiteo/suppress-msvc-false-default

SCons: Set `silence_msvc` to false by default
Rémi Verschelde 1 year ago
parent
commit
0eee7345ee
1 changed files with 3 additions and 1 deletions
  1. 3 1
      platform/windows/detect.py

+ 3 - 1
platform/windows/detect.py

@@ -202,7 +202,9 @@ def get_opts():
         BoolVariable("use_asan", "Use address sanitizer (ASAN)", False),
         BoolVariable("use_asan", "Use address sanitizer (ASAN)", False),
         BoolVariable("debug_crt", "Compile with MSVC's debug CRT (/MDd)", False),
         BoolVariable("debug_crt", "Compile with MSVC's debug CRT (/MDd)", False),
         BoolVariable("incremental_link", "Use MSVC incremental linking. May increase or decrease build times.", False),
         BoolVariable("incremental_link", "Use MSVC incremental linking. May increase or decrease build times.", False),
-        BoolVariable("silence_msvc", "Silence MSVC's stdout. Decreases output log bloat by roughly half.", True),
+        BoolVariable(
+            "silence_msvc", "Silence MSVC's stdout to decrease output log bloat. May hide error messages.", False
+        ),
         ("angle_libs", "Path to the ANGLE static libraries", ""),
         ("angle_libs", "Path to the ANGLE static libraries", ""),
         # Direct3D 12 support.
         # Direct3D 12 support.
         (
         (