scripts: Update gcc-wrapper.py

This commit is contained in:
baiywt 2023-07-17 19:26:52 +08:00
parent fb489320e3
commit ff23255bad
1 changed files with 1 additions and 1 deletions

View File

@ -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)