Skip to content

Commit b43fc0c

Browse files
committed
build: target toolchain return
Revert back to the toolchain function. Although it should be refactored (return just list of toolchains from a target).
1 parent f478a21 commit b43fc0c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/build_api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,8 @@ def get_mbed_official_release(version, profile=None):
424424
tuple(
425425
[
426426
TARGET_MAP[target].name,
427-
tuple(['ARM', 'GCC_ARM'])
427+
tuple(transform_release_toolchains(
428+
- TARGET_MAP[target], version))
428429
]
429430
) for target in TARGET_NAMES \
430431
if not profile or profile in TARGET_MAP[target].supported_application_profiles

0 commit comments

Comments
 (0)