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