Skip to content

Commit 3f57f0f

Browse files
committed
移除脚本中输出彩色的print
1 parent 4cc40d5 commit 3f57f0f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

bsp/xuantie/smartl/e906/SConstruct

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import os
22
import sys
33
import rtconfig
44
from SCons.Script import *
5-
from termcolor import colored
65

76
if os.getenv('RTT_ROOT'):
87
RTT_ROOT = os.getenv('RTT_ROOT')
@@ -20,9 +19,6 @@ except:
2019

2120
TARGET = 'rtthread.' + rtconfig.TARGET_EXT
2221

23-
print(colored('RT-Thread root directory: %s' % RTT_ROOT, 'green'))
24-
print(colored('Building path: %s' % os.path.abspath('.'), 'green'))
25-
print(colored('Building target: %s' % TARGET, 'green'))
2622

2723
DefaultEnvironment(tools=[])
2824
env = Environment(tools = ['mingw'],
@@ -37,14 +33,12 @@ Export('RTT_ROOT')
3733
Export('rtconfig')
3834

3935
SDK_ROOT = os.path.abspath('./')
40-
print(colored('SDK_ROOT: %s' % SDK_ROOT, 'green'))
4136

4237
if os.path.exists(SDK_ROOT + '/libraries'):
4338
libraries_path_prefix = SDK_ROOT + '../ibraries'
4439
else:
4540
libraries_path_prefix = os.path.dirname(SDK_ROOT) + '/../libraries'
4641

47-
print(colored('libraries_path_prefix: %s' % libraries_path_prefix, 'green'))
4842
SDK_LIB = libraries_path_prefix
4943
Export('SDK_LIB')
5044

0 commit comments

Comments
 (0)