1#
2# Arm SCP/MCP Software
3# Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8set(CMAKE_ASM_COMPILER
9    ${CMAKE_TOOLCHAIN_PREFIX}gcc
10    CACHE FILEPATH "Path to the assembler.")
11set(CMAKE_C_COMPILER
12    ${CMAKE_TOOLCHAIN_PREFIX}gcc
13    CACHE FILEPATH "Path to the C compiler.")
14set(CMAKE_CXX_COMPILER
15    ${CMAKE_TOOLCHAIN_PREFIX}g++
16    CACHE FILEPATH "Path to the C++ compiler.")
17