Compiling Cortex-A cores in uVision is not supported. Reference: http://www2.keil.com/mdk5/selector

pull/7375/head
Cruz Monrreal II 2018-06-21 09:13:24 -05:00 committed by adbridge
parent 4d84c0329c
commit a76d7bb0df
1 changed files with 2 additions and 0 deletions

View File

@ -137,6 +137,8 @@ class Uvision(Exporter):
return False
if not DeviceCMSIS.check_supported(target_name):
return False
if "Cortex-A" in target.core:
return False
if not hasattr(target, "post_binary_hook"):
return True
if target.post_binary_hook['function'] in cls.POST_BINARY_WHITELIST: