From 9968b547d97b3890517d8e1e33de51d274b1a4ca 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 83ad5535c8..310197eaba 100644 --- a/tools/build_api.py +++ b/tools/build_api.py @@ -181,7 +181,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)