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