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 decdc93 commit 0cf7b7eCopy full SHA for 0cf7b7e
tools/export/makefile/__init__.py
@@ -256,6 +256,17 @@ class Armc6(Arm):
256
NAME = 'Make-ARMc6'
257
TOOLCHAIN = "ARMC6"
258
259
+ @classmethod
260
+ def is_target_supported(cls, target_name):
261
+ target = TARGET_MAP[target_name]
262
+ if target.core in (
263
+ "Cortex-M23", "Cortex-M23-NS",
264
+ "Cortex-M33", "Cortex-M33-NS"
265
+ ):
266
+ return False
267
+ return apply_supported_whitelist(
268
+ cls.TOOLCHAIN, cls.POST_BINARY_WHITELIST, target)
269
+
270
271
class IAR(Makefile):
272
"""IAR specific makefile target"""
0 commit comments