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 cb58b34 commit c4c21d2Copy full SHA for c4c21d2
tools/build_api.py
@@ -43,7 +43,7 @@
43
BUILD_DIR)
44
from .resources import Resources, FileType, FileRef
45
from .notifier.mock import MockNotifier
46
-from .targets import TARGET_NAMES, TARGET_MAP, CORE_ARCH
+from .targets import TARGET_NAMES, TARGET_MAP, CORE_ARCH, Target
47
from .libraries import Library
48
from .toolchains import TOOLCHAIN_CLASSES
49
from .config import Config
@@ -263,6 +263,7 @@ def get_mbed_official_release(version):
263
) for target in TARGET_NAMES \
264
if (hasattr(TARGET_MAP[target], 'release_versions')
265
and version in TARGET_MAP[target].release_versions)
266
+ and not Target.get_target(target).is_PSA_secure_target
267
)
268
269
0 commit comments