Update uvision exporter to capture ARMC6 as default toolchain

pull/9888/head
Senthil Ramakrishnan 2019-02-21 15:43:17 -06:00
parent e2646407de
commit 22da2be37f
1 changed files with 2 additions and 2 deletions

View File

@ -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