Skip to content

Commit

Permalink
Merge pull request #89159 from Repiteo/suppress-msvc-false-default
Browse files Browse the repository at this point in the history
SCons: Set `silence_msvc` to false by default
  • Loading branch information
akien-mga committed Mar 5, 2024
2 parents 6d1ac18 + 581315a commit 0eee734
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion platform/windows/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ def get_opts():
BoolVariable("use_asan", "Use address sanitizer (ASAN)", 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("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", ""),
# Direct3D 12 support.
(
Expand Down

0 comments on commit 0eee734

Please sign in to comment.