2019-03-14 09:29:32 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# For bootloader, all we need is headers
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
|
|
|
set(COMPONENT_REQUIRES ${IDF_COMPONENTS})
|
|
|
|
set(COMPONENT_SRCS)
|
|
|
|
register_component()
|
|
|
|
else()
|
|
|
|
# Regular app build
|
|
|
|
set(COMPONENT_SRCS "esp_rom.c")
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
|
|
|
|
|
|
|
register_component()
|
|
|
|
|
|
|
|
target_linker_script(${COMPONENT_TARGET}
|
|
|
|
"esp32/ld/esp32.rom.ld"
|
2019-03-10 14:12:34 +00:00
|
|
|
"esp32/ld/esp32.rom.libgcc.ld"
|
|
|
|
"esp32/ld/esp32.rom.syscalls.ld"
|
|
|
|
"esp32/ld/esp32.rom.newlib-data.ld")
|
2019-03-14 09:29:32 +00:00
|
|
|
|
|
|
|
if(CONFIG_SPIRAM_CACHE_WORKAROUND)
|
|
|
|
target_compile_options(${COMPONENT_TARGET} PUBLIC -mfix-esp32-psram-cache-issue)
|
|
|
|
else()
|
2019-03-10 14:12:34 +00:00
|
|
|
target_linker_script(${COMPONENT_TARGET} "esp32/ld/esp32.rom.newlib-funcs.ld")
|
2019-03-14 09:29:32 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CONFIG_NEWLIB_NANO_FORMAT)
|
2019-03-10 14:12:34 +00:00
|
|
|
target_linker_script(${COMPONENT_TARGET} "esp32/ld/esp32.rom.newlib-nano.ld")
|
2019-03-14 09:29:32 +00:00
|
|
|
endif()
|
|
|
|
|
2019-03-29 04:37:51 +00:00
|
|
|
if(NOT GCC_NOT_5_2_0)
|
|
|
|
target_linker_script(${COMPONENT_TARGET} "esp32/ld/esp32.rom.newlib-locale.ld")
|
|
|
|
endif()
|
|
|
|
|
2019-03-14 09:29:32 +00:00
|
|
|
if(NOT CONFIG_SPI_FLASH_ROM_DRIVER_PATCH)
|
|
|
|
target_linker_script(${COMPONENT_TARGET} "esp32/ld/esp32.rom.spiflash.ld")
|
|
|
|
endif()
|
|
|
|
endif()
|