From 3924c7721cdec6be099067d2c05acfe549aecff3 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Mon, 16 Jul 2018 08:42:55 -0500 Subject: [PATCH] Allow ARMC6 only mbed 5 releases --- tools/build_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_api.py b/tools/build_api.py index 6bdf5a1726..8b403d5f8c 100644 --- a/tools/build_api.py +++ b/tools/build_api.py @@ -201,7 +201,7 @@ def is_official_target(target_name, version): # For version 5, ARM, GCC_ARM, and IAR toolchain support is required required_toolchains = [ set(['ARM', 'GCC_ARM', 'IAR']), - set(['ARMC6', 'GCC_ARM', 'IAR']) + set(['ARMC6']) ] supported_toolchains = set(target.supported_toolchains)