Compare to unicode in example builder

pull/5848/head
Jimmy Brisson 2018-01-26 11:31:33 -06:00
parent db4c380b2b
commit 95c7d4d47c
1 changed files with 2 additions and 1 deletions

View File

@ -18,8 +18,9 @@ sys.path.insert(0, ROOT)
from tools.build_api import get_mbed_official_release
from tools.targets import TARGET_MAP
from tools.export import EXPORTERS
from tools.toolchains import TOOLCHAINS
SUPPORTED_TOOLCHAINS = ["ARM", "IAR", "GCC_ARM", "ARMC6"]
SUPPORTED_TOOLCHAINS = list(TOOLCHAINS - set(u'uARM'))
SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() if exp != "cmsis" and exp != "zip"]