From 5916952c0fe6167989afa363829fc4e1d053c683 Mon Sep 17 00:00:00 2001 From: Nina Drozd Date: Thu, 10 Feb 2022 13:33:20 +0000 Subject: MLECO-2853: update cmake flags for Armclang * set CMP0123 policy to remove warning * remove parentheses to avoid assert is always true warning Change-Id: Ifcdf089183d750d7b00b345f5c4115c82d897def --- build_default.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build_default.py') diff --git a/build_default.py b/build_default.py index 3971a05..c0cf8d1 100755 --- a/build_default.py +++ b/build_default.py @@ -72,8 +72,7 @@ def run(toolchain: str, # 1. Make sure the toolchain is supported, and set the right one here supported_toolchain_ids = ["gnu", "arm"] - assert (toolchain in supported_toolchain_ids, - f"Toolchain must be from {supported_toolchain_ids}") + assert toolchain in supported_toolchain_ids, f"Toolchain must be from {supported_toolchain_ids}" if toolchain == "arm": toolchain_file_name = "bare-metal-armclang.cmake" elif toolchain == "gnu": -- cgit v1.2.1