From ff23255bad85a6c5ceaabb85ba16205fa25b1fc8 Mon Sep 17 00:00:00 2001 From: baiywt Date: Mon, 17 Jul 2023 19:26:52 +0800 Subject: [PATCH] scripts: Update gcc-wrapper.py --- scripts/gcc-wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gcc-wrapper.py b/scripts/gcc-wrapper.py index ea74ea852242..e7679c88d621 100755 --- a/scripts/gcc-wrapper.py +++ b/scripts/gcc-wrapper.py @@ -102,7 +102,7 @@ def run_gcc(): proc = subprocess.Popen(args, stderr=subprocess.PIPE, env=env) for line in proc.stderr: print (line.decode("utf-8"), end="") - interpret_warning(line.decode("utf-8")) + #interpret_warning(line.decode("utf-8")) if do_exit: sys.exit(1)