From af3a2f3aba049341518c597f624705753255cb21 Mon Sep 17 00:00:00 2001 From: Renz Christian Bagaporo Date: Mon, 10 Jun 2019 18:19:15 +0800 Subject: [PATCH] esp_event: fix placement issue when building with make The CMake build uses the linker fragment file to place functions in IRAM on certain configurations. This commit does that for Make as well. --- components/esp_event/component.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_event/component.mk b/components/esp_event/component.mk index c59eccc41a..828cb6abac 100644 --- a/components/esp_event/component.mk +++ b/components/esp_event/component.mk @@ -4,6 +4,7 @@ COMPONENT_ADD_INCLUDEDIRS := include COMPONENT_PRIV_INCLUDEDIRS := private_include COMPONENT_SRCDIRS := . +COMPONENT_ADD_LDFRAGMENTS := linker.lf ifdef CONFIG_ESP_EVENT_LOOP_PROFILING PROFILING_ENABLED := 1 -- 2.40.0