File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -38,21 +38,25 @@ def embarc_makefile(paths): # to confirm the file is a embarc makefile
3838 os .chdir (os .path .join (applications_path ,"embarc_osp" ))
3939 get_makefile (osp_application )
4040 embarc_makefile (make_path )
41+
4142 for (k ,v ) in make_path .items ():
4243 result [k ] = 0
43- print ("application [%s]=" % k ,v )
44+ print ("Application [%s]=" % k ,v )
4445 pathin = v .replace ("\\ " , "/" )
4546 os .chdir (pathin )
46- print ("make configuration: " ,sys .argv [1 ])
47- print ("start compile" )
47+ print ("Make Configuration: " ,sys .argv [1 ])
48+ print ("Start compile this application" )
49+ sys .stdout .flush ()
50+
4851 os .system ("make " + sys .argv [1 ]+ " clean" )
4952
5053 if os .system ("make " + sys .argv [1 ]+ " -k" ) != 0 :
5154
5255 result [k ] = 1
5356 pathout = cwd_path
5457 os .chdir (pathout )
55- print ("Compilation result" )
58+
59+ print ("\r \n Compilation result as follows" )
5660 print (result )
5761 for (k ,v ) in result .items ():
5862 if v == 1 :
You can’t perform that action at this time.
0 commit comments