mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4df3ff619e
- add hardware stack guard based on assist-debug module - enable hardware stack guard by default - disable hardware stack guard for freertos ci.release test - refactor rtos_int_enter/rtos_int_exit to change SP register inside them - fix panic_reason.h header for RISC-V - update docs to include information about the new feature
21 lines
774 B
CMake
21 lines
774 B
CMake
set(srcs "test_app_main.c" "test_panic.c")
|
|
|
|
if(CONFIG_TEST_MEMPROT)
|
|
list(APPEND srcs "test_memprot.c")
|
|
if(CONFIG_SOC_MEMPROT_SUPPORTED)
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
|
list(APPEND srcs "panic_utils/memprot_panic_utils_xtensa.c")
|
|
elseif(CONFIG_IDF_TARGET_ARCH_RISCV)
|
|
list(APPEND srcs "panic_utils/memprot_panic_utils_riscv.c")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES spi_flash esp_psram esp_system esp_partition
|
|
PRIV_REQUIRES esp_gdbstub)
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-unused-variable"
|
|
"-Wno-infinite-recursion")
|