mirror of https://github.com/ARMmbed/mbed-os.git
Update uvision exporter to capture ARMC6 as default toolchain
parent
e2646407de
commit
22da2be37f
|
@ -316,7 +316,7 @@ class UvisionArmc5(Uvision):
|
|||
def is_target_supported(cls, target_name):
|
||||
target = TARGET_MAP[target_name]
|
||||
if not (set(target.supported_toolchains).intersection(
|
||||
set(["ARM", "uARM"]))):
|
||||
set(["ARMC5", "uARM"]))):
|
||||
return False
|
||||
if not DeviceCMSIS.check_supported(target_name):
|
||||
return False
|
||||
|
@ -339,7 +339,7 @@ class UvisionArmc6(Uvision):
|
|||
def is_target_supported(cls, target_name):
|
||||
target = TARGET_MAP[target_name]
|
||||
if not (set(target.supported_toolchains).intersection(
|
||||
set(["ARMC6"]))):
|
||||
set(["ARM", "ARMC6", "uARM"]))):
|
||||
return False
|
||||
if not DeviceCMSIS.check_supported(target_name):
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue