@@ -44,7 +44,7 @@ def build_project(src_path, build_path, target, toolchain_name,
44
44
45
45
if name is None :
46
46
name = basename (src_paths [0 ])
47
- toolchain .info ("\n >>> BUILD PROJECT: %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
47
+ toolchain .info ("Building project %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
48
48
49
49
# Scan src_path and libraries_paths for resources
50
50
resources = toolchain .scan_resources (src_paths [0 ])
@@ -107,7 +107,7 @@ def build_library(src_paths, build_path, target, toolchain_name,
107
107
108
108
# The first path will give the name to the library
109
109
name = basename (src_paths [0 ])
110
- toolchain .info ("\n >>> BUILD LIBRARY %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
110
+ toolchain .info ("Building library %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
111
111
112
112
# Scan Resources
113
113
resources = []
@@ -180,7 +180,7 @@ def build_mbed_libs(target, toolchain_name, options=None, verbose=False, clean=F
180
180
mkdir (TMP_PATH )
181
181
182
182
# CMSIS
183
- toolchain .info ("\n >>> BUILD LIBRARY %s (%s, %s)" % ('CMSIS' , target .name , toolchain_name ))
183
+ toolchain .info ("Building library %s (%s, %s)" % ('CMSIS' , target .name , toolchain_name ))
184
184
cmsis_src = join (MBED_TARGETS_PATH , "cmsis" )
185
185
resources = toolchain .scan_resources (cmsis_src )
186
186
@@ -191,7 +191,7 @@ def build_mbed_libs(target, toolchain_name, options=None, verbose=False, clean=F
191
191
toolchain .copy_files (objects , BUILD_TOOLCHAIN )
192
192
193
193
# mbed
194
- toolchain .info ("\n >>> BUILD LIBRARY %s (%s, %s)" % ('MBED' , target .name , toolchain_name ))
194
+ toolchain .info ("Building library %s (%s, %s)" % ('MBED' , target .name , toolchain_name ))
195
195
196
196
# Common Headers
197
197
toolchain .copy_files (toolchain .scan_resources (MBED_API ).headers , MBED_LIBRARIES )
@@ -293,7 +293,7 @@ def static_analysis_scan(target, toolchain_name, CPPCHECK_CMD, CPPCHECK_MSG_FORM
293
293
mkdir (TMP_PATH )
294
294
295
295
# CMSIS
296
- toolchain .info (">>>> STATIC ANALYSIS FOR %s (%s, %s)" % ('CMSIS' , target .name , toolchain_name ))
296
+ toolchain .info ("Static analysis for %s (%s, %s)" % ('CMSIS' , target .name , toolchain_name ))
297
297
cmsis_src = join (MBED_TARGETS_PATH , "cmsis" )
298
298
resources = toolchain .scan_resources (cmsis_src )
299
299
@@ -331,7 +331,7 @@ def static_analysis_scan(target, toolchain_name, CPPCHECK_CMD, CPPCHECK_MSG_FORM
331
331
# =========================================================================
332
332
333
333
# MBED
334
- toolchain .info (">>> STATIC ANALYSIS FOR %s (%s, %s)" % ('MBED' , target .name , toolchain_name ))
334
+ toolchain .info ("Static analysis for %s (%s, %s)" % ('MBED' , target .name , toolchain_name ))
335
335
336
336
# Common Headers
337
337
toolchain .copy_files (toolchain .scan_resources (MBED_API ).headers , MBED_LIBRARIES )
@@ -417,7 +417,7 @@ def static_analysis_scan_library(src_paths, build_path, target, toolchain_name,
417
417
418
418
# The first path will give the name to the library
419
419
name = basename (src_paths [0 ])
420
- toolchain .info (">>> STATIC ANALYSIS FOR LIBRARY %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
420
+ toolchain .info ("Static analysis for library %s (%s, %s)" % (name .upper (), target .name , toolchain_name ))
421
421
422
422
# Scan Resources
423
423
resources = []
0 commit comments