Skip to content

Commit ec5018d

Browse files
author
Cruz Monrreal
authored
Merge pull request #7295 from cmonr/uvision-cannot-compile-cortexA
Compiling Cortex-A cores in uVision is not supported.
2 parents 0b8f467 + 799cfdb commit ec5018d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tools/export/uvision/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ def is_target_supported(cls, target_name):
137137
return False
138138
if not DeviceCMSIS.check_supported(target_name):
139139
return False
140+
if "Cortex-A" in target.core:
141+
return False
140142
if not hasattr(target, "post_binary_hook"):
141143
return True
142144
if target.post_binary_hook['function'] in cls.POST_BINARY_WHITELIST:

0 commit comments

Comments
 (0)