Преглед на файлове

Merge pull request #90858 from Repiteo/scons/show_progress-tweaks

SCons: Disable `show_progress` with Ninja
Rémi Verschelde преди 1 година
родител
ревизия
21140aad73
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      methods.py

+ 4 - 0
methods.py

@@ -990,6 +990,10 @@ def using_emcc(env):
 
 
 def show_progress(env):
+    if env["ninja"]:
+        # Has its own progress/tracking tool that clashes with ours
+        return
+
     import sys
     from SCons.Script import Progress, Command, AlwaysBuild