mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ee2f8b1a62
Jump tables placed in flash would cause issue with code that needed to be ran from IRAM. These optimizations are now always disabled.
10 lines
372 B
Makefile
10 lines
372 B
Makefile
COMPONENT_SRCDIRS := . port/$(IDF_TARGET)
|
|
COMPONENT_ADD_INCLUDEDIRS := . include port/$(IDF_TARGET)/ include/soc port/$(IDF_TARGET)/private_include
|
|
COMPONENT_ADD_LDFRAGMENTS := linker.lf
|
|
|
|
ifdef IS_BOOTLOADER_BUILD
|
|
COMPONENT_OBJEXCLUDE += clk_ctrl_os.o mac_addr.o sp_async_memcpy.o intr_alloc.o sleep_modes.o regi2c_ctrl.o
|
|
endif
|
|
|
|
COMPONENT_OBJEXCLUDE += esp_async_memcpy.o
|