1# SPDX-License-Identifier: Apache-2.0
2
3if(CONFIG_XTENSA_RESET_VECTOR)
4  zephyr_library()
5
6  zephyr_library_cc_option(
7    -c
8    -mtext-section-literals
9    -mlongcalls
10    )
11
12  zephyr_library_sources(
13    memerror_vector.S
14    memctl_default.S
15    reset_vector.S
16    )
17endif()
18