From 94116edafaa7fe16c08cfa25487bce68a7a36c9a Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Tue, 22 May 2018 11:32:48 +0800 Subject: [PATCH] [Tools] Disable print out in gcc detection. --- tools/gcc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gcc.py b/tools/gcc.py index b977f183f7..3638d81072 100644 --- a/tools/gcc.py +++ b/tools/gcc.py @@ -67,7 +67,7 @@ def GCCResult(rtconfig, str): stdout, stderr = child.communicate() - print(stdout) + # print(stdout) if stderr != '': print(stderr)