mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
59a37806e7
Closes https://github.com/espressif/esp-idf/pull/7508 Closes https://github.com/espressif/esp-idf/issues/6849
72 lines
2.6 KiB
CMake
72 lines
2.6 KiB
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
idf_component_register(SRCS "patches/esp_rom_longjmp.S"
|
|
INCLUDE_DIRS include "${target}"
|
|
PRIV_REQUIRES soc)
|
|
|
|
if(BOOTLOADER_BUILD)
|
|
set(scripts
|
|
"${target}/ld/${target}.rom.ld"
|
|
"${target}/ld/${target}.rom.newlib-funcs.ld"
|
|
"${target}/ld/${target}.rom.libgcc.ld"
|
|
)
|
|
if(target STREQUAL "esp32s2beta")
|
|
list(APPEND scripts "esp32s2beta/ld/esp32s2beta.rom.spiflash.ld")
|
|
endif()
|
|
|
|
if(target STREQUAL "esp32")
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.spiflash.ld")
|
|
endif()
|
|
endif()
|
|
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.eco3.ld")
|
|
endif()
|
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${scripts}")
|
|
else() # Regular app build
|
|
set(scripts
|
|
"${target}/ld/${target}.rom.ld"
|
|
"${target}/ld/${target}.rom.libgcc.ld"
|
|
"${target}/ld/${target}.rom.newlib-data.ld")
|
|
|
|
if(target STREQUAL "esp32")
|
|
list(APPEND scripts "${target}/ld/${target}.rom.syscalls.ld")
|
|
|
|
if(NOT CONFIG_SPIRAM_CACHE_WORKAROUND)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.newlib-funcs.ld")
|
|
if(NOT CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS)
|
|
# If SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS option is defined
|
|
# then all time functions from the ROM memory will not be linked.
|
|
# Instead, those functions can be used from the toolchain by ESP-IDF.
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "esp32/ld/esp32.rom.newlib-time.ld")
|
|
endif()
|
|
|
|
# Include in newlib nano from ROM only if SPIRAM cache workaround is disabled
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.newlib-nano.ld")
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.spiflash.ld")
|
|
endif()
|
|
|
|
elseif(target STREQUAL "esp32s2beta")
|
|
# no SPIRAM workaround for esp32s2beta
|
|
# no nano formatting function in ROM
|
|
|
|
list(APPEND scripts "esp32s2beta/ld/esp32s2beta.rom.newlib-funcs.ld"
|
|
"esp32s2beta/ld/esp32s2beta.rom.spiflash.ld")
|
|
endif()
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
|
list(APPEND scripts "esp32/ld/esp32.rom.eco3.ld")
|
|
endif()
|
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${scripts}")
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--wrap=longjmp")
|
|
endif()
|