blob: 87f813a368c59f304883675b9f0a3ccc342f7e43 [file] [log] [blame]
#-------------------------------------------------------------------------------
# Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------
if (NOT DEFINED TGT)
message(FATAL_ERROR "mandatory parameter TGT is not defined.")
endif()
if (NOT DEFINED TRACE_PREFIX)
message(FATAL_ERROR "mandatory parameter TRACE_PREFIX is not defined.")
endif()
if (NOT DEFINED SP_HEAP_SIZE)
message(FATAL_ERROR "mandatory parameter SP_HEAP_SIZE is not defined.")
endif()
if (NOT DEFINED SP_STACK_SIZE)
message(FATAL_ERROR "mandatory parameter SP_STACK_SIZE is not defined.")
endif()
target_sources(${TGT} PRIVATE
"${CMAKE_CURRENT_LIST_DIR}/entry.S"
"${CMAKE_CURRENT_LIST_DIR}/sp_assert.c"
"${CMAKE_CURRENT_LIST_DIR}/sp_entry.c"
"${CMAKE_CURRENT_LIST_DIR}/sp_trace.c"
)
# Default trace level configuration, can be overwritten by setting the same
# variable in the deployment specific file before including this file.
set(TRACE_LEVEL "TRACE_LEVEL_ERROR" CACHE STRING "Trace level")
target_compile_definitions(${TGT} PRIVATE
TRACE_LEVEL=${TRACE_LEVEL}
TRACE_PREFIX="${TRACE_PREFIX}"
SP_HEAP_SIZE=${SP_HEAP_SIZE}
)
include(../../../external/newlib/newlib.cmake)
target_link_libraries(${TGT} PRIVATE
stdlib::c
)
target_link_options(${TGT} PRIVATE
-Wl,--hash-style=sysv
-Wl,--as-needed
-Wl,--gc-sections
)
compiler_set_linker_script(TARGET ${TGT} FILE ${CMAKE_CURRENT_LIST_DIR}/sp.ld.S DEF ARM64=1 SP_STACK_SIZE=${SP_STACK_SIZE})