Bump minimum clang version to 6.13

Clang 6.12 in Debug mode can cause a stack overflow on PSoC platform.
Rather than increasing the stack size, bump the minimum clang version.

Change-Id: I0689a759495c1a8428d7a140277588836c7fdeae
Signed-off-by: Chris Brand <chris.brand@cypress.com>
diff --git a/toolchain_ARMCLANG.cmake b/toolchain_ARMCLANG.cmake
index 5d3f682..0aed71a 100644
--- a/toolchain_ARMCLANG.cmake
+++ b/toolchain_ARMCLANG.cmake
@@ -1,5 +1,7 @@
 #-------------------------------------------------------------------------------
 # Copyright (c) 2020-2022, Arm Limited. All rights reserved.
+# Copyright (c) 2022 Cypress Semiconductor Corporation (an Infineon company)
+# or an affiliate of Cypress Semiconductor Corporation. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-3-Clause
 #
@@ -163,8 +165,8 @@
     include(Compiler/ARMCC-ASM)
     __compiler_armcc(ASM)
 
-    if (CMAKE_C_COMPILER_VERSION VERSION_LESS 6.10.1)
-        message(FATAL_ERROR "Please select newer Arm compiler version starting from 6.10.1.")
+    if (CMAKE_C_COMPILER_VERSION VERSION_LESS 6.13)
+        message(FATAL_ERROR "Please select newer Arm compiler version starting from 6.13.")
     endif()
 
     if (CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 6.15 AND