From 581315a975363f0049897bd2481306bff34fa190 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Mon, 4 Mar 2024 16:06:19 -0600 Subject: [PATCH] Set `silence_msvc` default to false, amend description --- platform/windows/detect.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/windows/detect.py b/platform/windows/detect.py index ca81bb615e81..6fe40709e711 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -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. (