2019-06-13 09:55:51 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2019-11-28 13:10:31 +00:00
|
|
|
idf_component_register(INCLUDE_DIRS include)
|
|
|
|
|
2019-03-14 09:29:32 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
2019-05-10 02:53:08 +00:00
|
|
|
set(scripts
|
2019-08-08 03:44:24 +00:00
|
|
|
"${target}/ld/${target}.rom.ld"
|
|
|
|
"${target}/ld/${target}.rom.newlib-funcs.ld"
|
|
|
|
"${target}/ld/${target}.rom.libgcc.ld"
|
2019-05-10 02:53:08 +00:00
|
|
|
)
|
2019-11-28 13:10:31 +00:00
|
|
|
if(target STREQUAL "esp32s2beta")
|
2019-06-13 09:55:51 +00:00
|
|
|
list(APPEND scripts "esp32s2beta/ld/esp32s2beta.rom.spiflash.ld")
|
2019-05-27 06:29:43 +00:00
|
|
|
endif()
|
2019-08-08 03:44:24 +00:00
|
|
|
|
2020-02-24 19:51:41 +00:00
|
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
|
|
|
list(APPEND scripts "esp32/ld/esp32.rom.eco3.ld")
|
|
|
|
endif()
|
|
|
|
|
2019-06-04 11:05:33 +00:00
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${scripts}")
|
2019-11-28 13:10:31 +00:00
|
|
|
else() # Regular app build
|
2019-06-13 09:55:51 +00:00
|
|
|
set(scripts
|
|
|
|
"${target}/ld/${target}.rom.ld"
|
|
|
|
"${target}/ld/${target}.rom.libgcc.ld"
|
|
|
|
"${target}/ld/${target}.rom.newlib-data.ld")
|
|
|
|
|
2019-11-28 13:10:31 +00:00
|
|
|
if(target STREQUAL "esp32")
|
2019-06-13 09:55:51 +00:00
|
|
|
list(APPEND scripts "${target}/ld/${target}.rom.syscalls.ld")
|
2019-03-14 09:29:32 +00:00
|
|
|
|
2019-05-27 06:29:43 +00:00
|
|
|
if(NOT CONFIG_SPIRAM_CACHE_WORKAROUND)
|
2019-08-08 03:44:24 +00:00
|
|
|
list(APPEND scripts "esp32/ld/esp32.rom.newlib-funcs.ld")
|
2020-01-10 04:58:54 +00:00
|
|
|
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-funcs-time.ld")
|
|
|
|
endif()
|
2019-03-14 09:29:32 +00:00
|
|
|
|
2020-02-07 10:35:37 +00:00
|
|
|
# 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()
|
|
|
|
|
2019-05-27 06:29:43 +00:00
|
|
|
endif()
|
2019-03-14 09:29:32 +00:00
|
|
|
|
2019-05-27 06:29:43 +00:00
|
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
2019-08-08 03:44:24 +00:00
|
|
|
list(APPEND scripts "esp32/ld/esp32.rom.spiflash.ld")
|
2019-05-27 06:29:43 +00:00
|
|
|
endif()
|
2019-03-29 04:37:51 +00:00
|
|
|
|
2019-06-13 09:55:51 +00:00
|
|
|
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")
|
2019-03-14 09:29:32 +00:00
|
|
|
endif()
|
2020-02-24 19:51:41 +00:00
|
|
|
if(CONFIG_ESP32_REV_MIN_3)
|
|
|
|
list(APPEND scripts "esp32/ld/esp32.rom.eco3.ld")
|
|
|
|
endif()
|
2019-05-27 06:29:43 +00:00
|
|
|
|
2019-08-08 03:44:24 +00:00
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "${scripts}")
|
2019-06-13 09:55:51 +00:00
|
|
|
|
2019-03-14 09:29:32 +00:00
|
|
|
endif()
|