1# Copyright (c) 2021 Telink Semiconductor 2# SPDX-License-Identifier: Apache-2.0 3 4zephyr_sources( 5 start.S 6 soc_irq.S 7 soc.c 8) 9 10zephyr_include_directories(.) 11 12# Force using BFD-LD 13zephyr_ld_options(-fuse-ld=bfd) 14 15# Set compile options 16zephyr_compile_options_ifdef(CONFIG_TELINK_B91_HWDSP -mext-dsp) 17zephyr_compile_options_ifndef(CONFIG_RISCV_GP -mno-relax) 18zephyr_linker_sources(ROM_START SORT_KEY 0x0 init.ld) 19 20set(SOC_LINKER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld CACHE INTERNAL "") 21