From bf2cfd4b1ae8cccad8278195d4d49dc66ba4736a Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 5 Mar 2020 19:14:54 +0900 Subject: [PATCH] Add -mtext-section-literals to avoid out of range relocations --- boards/xtensa/esp32/esp32-core/scripts/Make.defs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/xtensa/esp32/esp32-core/scripts/Make.defs b/boards/xtensa/esp32/esp32-core/scripts/Make.defs index d85b55040f..c230ad630b 100644 --- a/boards/xtensa/esp32/esp32-core/scripts/Make.defs +++ b/boards/xtensa/esp32/esp32-core/scripts/Make.defs @@ -104,7 +104,7 @@ LDNXFLATFLAGS = -e main -s 2048 # Loadable module definitions -CMODULEFLAGS = $(CFLAGS) +CMODULEFLAGS = $(CFLAGS) -mtext-section-literals LDMODULEFLAGS = -r -e module_initialize ifeq ($(WINTOOL),y) @@ -115,8 +115,8 @@ endif # ELF module definitions -CELFFLAGS = $(CFLAGS) -CXXELFFLAGS = $(CXXFLAGS) +CELFFLAGS = $(CFLAGS) -mtext-section-literals +CXXELFFLAGS = $(CXXFLAGS) -mtext-section-literals LDELFFLAGS = -r -e main ifeq ($(WINTOOL),y)