Browse Source

Merge pull request #89483 from Riteo/silent-compilation-unit

SCons: Disable verbose output for SCU build
Rémi Verschelde 1 năm trước cách đây
mục cha
commit
25d913f82b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scu_builders.py

+ 1 - 1
scu_builders.py

@@ -8,7 +8,7 @@ from os.path import normpath, basename
 
 base_folder_path = str(Path(__file__).parent) + "/"
 base_folder_only = os.path.basename(os.path.normpath(base_folder_path))
-_verbose = True  # Set manually for debug prints
+_verbose = False  # Set manually for debug prints
 _scu_folders = set()
 _max_includes_per_scu = 1024