@@ -263,7 +263,7 @@ def transform_release_toolchains(target, version):
263
263
if version == '5' :
264
264
if 'ARMC5' in target .supported_toolchains :
265
265
return ['ARMC5' , 'GCC_ARM' , 'IAR' ]
266
- else :
266
+ else :
267
267
return ['ARM' , 'ARMC6' , 'GCC_ARM' , 'IAR' ]
268
268
else :
269
269
return target .supported_toolchains
@@ -356,19 +356,19 @@ def prepare_toolchain(src_paths, build_dir, target, toolchain_name,
356
356
# If the configuration object was not yet created, create it now
357
357
config = config or Config (target , src_paths , app_config = app_config )
358
358
target = config .target
359
-
359
+
360
360
if not target_supports_toolchain (target , toolchain_name ):
361
361
raise NotSupportedException (
362
362
"Target {} is not supported by toolchain {}" .format (
363
363
target .name , toolchain_name ))
364
364
365
365
selected_toolchain_name = get_toolchain_name (target , toolchain_name )
366
366
367
- #If a target supports ARMC6 and we want to build UARM with it,
367
+ #If a target supports ARMC6 and we want to build UARM with it,
368
368
#then set the default_toolchain to uARM to link AC6 microlib.
369
369
if (selected_toolchain_name == "ARMC6" and toolchain_name == "uARM" ):
370
370
target .default_toolchain = "uARM"
371
- toolchain_name = selected_toolchain_name
371
+ toolchain_name = selected_toolchain_name
372
372
373
373
try :
374
374
cur_tc = TOOLCHAIN_CLASSES [toolchain_name ]
@@ -871,7 +871,7 @@ def build_mbed_libs(target, toolchain_name, clean=False, macros=None,
871
871
872
872
selected_toolchain_name = get_toolchain_name (target , toolchain_name )
873
873
874
- #If a target supports ARMC6 and we want to build UARM with it,
874
+ #If a target supports ARMC6 and we want to build UARM with it,
875
875
#then set the default_toolchain to uARM to link AC6 microlib.
876
876
if (selected_toolchain_name == "ARMC6" and toolchain_name == "uARM" ):
877
877
target .default_toolchain = "uARM"
@@ -1118,10 +1118,10 @@ def mcu_toolchain_matrix(verbose_html=False, platform_filter=None,
1118
1118
unique_supported_toolchains = get_unique_supported_toolchains (
1119
1119
release_targets )
1120
1120
#Add ARMC5 column as well to the matrix to help with showing which targets are in ARMC5
1121
- #ARMC5 is not a toolchain class but yet we use that as a toolchain id in supported_toolchains in targets.json
1121
+ #ARMC5 is not a toolchain class but yet we use that as a toolchain id in supported_toolchains in targets.json
1122
1122
#capture that info in a separate column
1123
1123
unique_supported_toolchains .append ('ARMC5' )
1124
-
1124
+
1125
1125
prepend_columns = ["Target" ] + ["mbed OS %s" % x for x in RELEASE_VERSIONS ]
1126
1126
1127
1127
# All tests status table print
0 commit comments