2020-11-06 15:03:03 +11:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2022-05-17 15:13:30 +08:00
|
|
|
idf_build_get_property(arch IDF_TARGET_ARCH)
|
2021-01-22 23:06:37 +08:00
|
|
|
|
2022-05-17 15:13:30 +08:00
|
|
|
if(NOT "${arch}" STREQUAL "riscv")
|
2020-11-06 15:03:03 +11:00
|
|
|
return()
|
|
|
|
endif()
|
2021-01-22 23:06:37 +08:00
|
|
|
|
2022-05-17 15:13:30 +08:00
|
|
|
|
2020-11-06 15:03:03 +11:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
set(priv_requires soc)
|
|
|
|
else()
|
2022-04-27 11:37:08 +08:00
|
|
|
set(priv_requires soc)
|
2020-11-06 15:03:03 +11:00
|
|
|
set(srcs
|
2020-12-30 13:27:00 +08:00
|
|
|
"instruction_decode.c"
|
|
|
|
"interrupt.c"
|
2020-11-06 15:03:03 +11:00
|
|
|
"vectors.S")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
LDFRAGMENTS linker.lf
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
PRIV_REQUIRES ${priv_requires})
|