2021-01-26 02:48:12 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2021-02-07 07:03:51 +00:00
|
|
|
set(srcs "esp_err.c")
|
2021-01-26 02:48:12 +00:00
|
|
|
|
2021-01-26 05:12:54 +00:00
|
|
|
if(CONFIG_IDF_ENV_FPGA)
|
|
|
|
list(APPEND srcs "fpga_overrides.c")
|
|
|
|
endif()
|
|
|
|
|
2021-01-20 07:18:55 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
2021-02-07 07:03:51 +00:00
|
|
|
# "_esp_error_check_failed()" requires spi_flash module
|
|
|
|
# Bootloader relies on some Kconfig options defined in esp_system.
|
|
|
|
idf_component_register(SRCS "${srcs}" REQUIRES spi_flash)
|
2021-01-20 07:18:55 +00:00
|
|
|
else()
|
2021-02-23 12:06:41 +00:00
|
|
|
list(APPEND srcs "crosscore_int.c"
|
|
|
|
"esp_err.c"
|
2021-01-20 07:18:55 +00:00
|
|
|
"freertos_hooks.c"
|
|
|
|
"int_wdt.c"
|
|
|
|
"panic.c"
|
2021-03-11 01:48:30 +00:00
|
|
|
"esp_system.c"
|
2021-01-20 07:18:55 +00:00
|
|
|
"startup.c"
|
|
|
|
"system_time.c"
|
|
|
|
"stack_check.c"
|
2020-11-21 02:15:59 +00:00
|
|
|
"task_wdt.c"
|
2021-08-30 03:30:12 +00:00
|
|
|
"ubsan.c"
|
2021-09-15 21:06:10 +00:00
|
|
|
"xt_wdt.c"
|
|
|
|
"debug_stubs.c")
|
2021-01-26 02:48:12 +00:00
|
|
|
|
2021-02-07 07:03:51 +00:00
|
|
|
if(CONFIG_ESP_SYSTEM_USE_EH_FRAME)
|
|
|
|
list(APPEND srcs "eh_frame_parser.c")
|
|
|
|
endif()
|
|
|
|
|
2021-01-20 07:18:55 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
|
|
INCLUDE_DIRS include
|
|
|
|
PRIV_REQUIRES spi_flash
|
|
|
|
# [refactor-todo] requirements due to init code,
|
|
|
|
# should be removable once using component init functions
|
|
|
|
# link-time registration is used.
|
2021-03-10 13:39:29 +00:00
|
|
|
esp_pm app_update nvs_flash pthread app_trace esp_gdbstub
|
2021-08-03 06:35:29 +00:00
|
|
|
espcoredump esp_phy efuse esp_ipc
|
2021-03-10 11:33:24 +00:00
|
|
|
LDFRAGMENTS "linker.lf" "app.lf")
|
2021-01-20 07:18:55 +00:00
|
|
|
add_subdirectory(port)
|
2020-02-13 12:43:23 +00:00
|
|
|
|
2021-01-20 07:18:55 +00:00
|
|
|
# After system initialization, `start_app` (and its other cores variant) is called.
|
|
|
|
# This is provided by the user or from another component. Since we can't establish
|
|
|
|
# dependency on what we don't know, force linker to not drop the symbol regardless
|
|
|
|
# of link line order.
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u start_app")
|
|
|
|
|
|
|
|
if(NOT CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u start_app_other_cores")
|
|
|
|
endif()
|
2020-07-21 10:11:22 +00:00
|
|
|
|
2021-01-20 07:18:55 +00:00
|
|
|
# Disable stack protection in files which are involved in initialization of that feature
|
|
|
|
set_source_files_properties(
|
|
|
|
"startup.c" "stack_check.c"
|
|
|
|
PROPERTIES COMPILE_FLAGS
|
|
|
|
-fno-stack-protector)
|
2020-09-02 09:10:54 +00:00
|
|
|
|
2021-04-08 02:27:21 +00:00
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/ld/ld.cmake)
|
2020-11-10 07:40:01 +00:00
|
|
|
endif()
|
2021-01-26 05:12:54 +00:00
|
|
|
|
|
|
|
if(CONFIG_IDF_ENV_FPGA)
|
|
|
|
# Forces the linker to include fpga stubs from this component
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_common_include_fpga_overrides")
|
|
|
|
endif()
|
2020-11-21 02:15:59 +00:00
|
|
|
|
|
|
|
# Force linking UBSAN hooks. If UBSAN is not enabled, the hooks will ultimately be removed
|
|
|
|
# due to -ffunction-sections -Wl,--gc-sections options.
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u __ubsan_include")
|