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)