We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3847373 commit 5a9ad74Copy full SHA for 5a9ad74
tools/build_api.py
@@ -385,7 +385,7 @@ def transform_release_toolchains(target, version):
385
RELEASE_VERSIONS
386
"""
387
if int(target.build_tools_metadata["version"]) > 0:
388
- if version == '5':
+ if version in ['5', '6']:
389
toolchains = copy(target.supported_toolchains)
390
391
if "ARM" in toolchains:
@@ -395,7 +395,7 @@ def transform_release_toolchains(target, version):
395
return toolchains
396
return target.supported_toolchains
397
else:
398
399
return ['ARM', 'GCC_ARM', 'IAR']
400
401
0 commit comments