mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7295 from cmonr/uvision-cannot-compile-cortexA
Compiling Cortex-A cores in uVision is not supported.pull/7296/head
commit
ec5018d39f
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue