Browse Source

[tools][update] 使用 '--verbose' 控制 iar 版本输出

Signed-off-by: MurphyZhao <d2014zjt@163.com>
MurphyZhao 5 years ago
parent
commit
9b9175dca6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      tools/iar.py

+ 4 - 1
tools/iar.py

@@ -27,6 +27,8 @@ import sys
 import string
 import utils
 
+from SCons.Script import *
+
 import xml.etree.ElementTree as etree
 from xml.etree.ElementTree import SubElement
 from utils import _make_path_relative
@@ -201,5 +203,6 @@ def IARVersion():
 
     # example stdout: IAR ANSI C/C++ Compiler V8.20.1.14183/W32 for ARM
     iar_version = re.search('[\d\.]+', stdout).group(0)
-    print("IAR version: %s" % iar_version)
+    if GetOption('verbose'):
+        print("IAR version: %s" % iar_version)
     return iar_version