Skip to content

Commit 8a9d79b

Browse files
committed
Add ARMC6 to supported matrix
1 parent d56c19f commit 8a9d79b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tools/build_api.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,6 +1128,9 @@ def get_unique_supported_toolchains(release_targets=None):
11281128
if toolchain not in unique_supported_toolchains:
11291129
unique_supported_toolchains.append(toolchain)
11301130

1131+
if "ARM" in unique_supported_toolchains:
1132+
unique_supported_toolchains.append("ARMC6")
1133+
11311134
return unique_supported_toolchains
11321135

11331136
def mcu_toolchain_list(release_version='5'):
@@ -1273,7 +1276,9 @@ def mcu_toolchain_matrix(verbose_html=False, platform_filter=None,
12731276
row.append(text)
12741277

12751278
for unique_toolchain in unique_supported_toolchains:
1276-
if unique_toolchain in TARGET_MAP[target].supported_toolchains:
1279+
if (unique_toolchain in TARGET_MAP[target].supported_toolchains or
1280+
(unique_toolchain == "ARMC6" and
1281+
"ARM" in TARGET_MAP[target].supported_toolchains)):
12771282
text = "Supported"
12781283
perm_counter += 1
12791284
else:

0 commit comments

Comments
 (0)