File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import os
22import sys
33import rtconfig
44from SCons .Script import *
5- from termcolor import colored
65
76if os .getenv ('RTT_ROOT' ):
87 RTT_ROOT = os .getenv ('RTT_ROOT' )
@@ -20,9 +19,6 @@ except:
2019
2120TARGET = '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
2723DefaultEnvironment (tools = [])
2824env = Environment (tools = ['mingw' ],
@@ -37,14 +33,12 @@ Export('RTT_ROOT')
3733Export ('rtconfig' )
3834
3935SDK_ROOT = os .path .abspath ('./' )
40- print (colored ('SDK_ROOT: %s' % SDK_ROOT , 'green' ))
4136
4237if os .path .exists (SDK_ROOT + '/libraries' ):
4338 libraries_path_prefix = SDK_ROOT + '../ibraries'
4439else :
4540 libraries_path_prefix = os .path .dirname (SDK_ROOT ) + '/../libraries'
4641
47- print (colored ('libraries_path_prefix: %s' % libraries_path_prefix , 'green' ))
4842SDK_LIB = libraries_path_prefix
4943Export ('SDK_LIB' )
5044
You can’t perform that action at this time.
0 commit comments