mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5bcd9b2db8
G0 doesn't depend on any G1+ layer for RISC-V based targets
23 lines
508 B
CMake
23 lines
508 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
idf_build_get_property(arch IDF_TARGET_ARCH)
|
|
|
|
if(NOT "${arch}" STREQUAL "riscv")
|
|
return()
|
|
endif()
|
|
|
|
|
|
if(BOOTLOADER_BUILD)
|
|
set(priv_requires soc)
|
|
else()
|
|
set(priv_requires soc)
|
|
set(srcs
|
|
"instruction_decode.c"
|
|
"interrupt.c"
|
|
"vectors.S")
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
LDFRAGMENTS linker.lf
|
|
INCLUDE_DIRS "include"
|
|
PRIV_REQUIRES ${priv_requires})
|