From a7e7167a859bc3daf77dfb2c99d1a4e4ada7f703 Mon Sep 17 00:00:00 2001 From: Thaddeus Crews Date: Thu, 18 Apr 2024 09:33:40 -0500 Subject: [PATCH] SCons: Disable `show_progress` with ninja --- methods.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/methods.py b/methods.py index 4d1f4c1cda6..8498310bf52 100644 --- a/methods.py +++ b/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