1#
2# Arm SCP/MCP Software
3# Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8set(CMAKE_ASM_COMPILER
9    clang-13
10    CACHE FILEPATH "Path to the assembler.")
11set(CMAKE_C_COMPILER
12    clang-13
13    CACHE FILEPATH "Path to the C compiler.")
14set(CMAKE_CXX_COMPILER
15    clang-13
16    CACHE FILEPATH "Path to the C++ compiler.")
17
18set(CMAKE_OBJCOPY
19    llvm-objcopy-13
20    CACHE FILEPATH "Path to objcopy tool.")
21