From b89b4e2259ba1ff12ce36f80eedb3090ab9355b9 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Sun, 1 Mar 2020 10:55:38 +0100 Subject: [PATCH] cpu/esp32: place libc functions in IRAM --- cpu/esp32/ld/esp32.common.ld | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/esp32/ld/esp32.common.ld b/cpu/esp32/ld/esp32.common.ld index 1afa3a5454..972354cf98 100644 --- a/cpu/esp32/ld/esp32.common.ld +++ b/cpu/esp32/ld/esp32.common.ld @@ -90,9 +90,9 @@ SECTIONS *(.iram1 .iram1.*) *libhal.a:(.literal .text .literal.* .text.*) - *libgcc.a:lib2funcs.o(.literal .text .literal.* .text.*) + *libgcc.a:(.literal .text .literal.* .text.*) *libgcov.a:(.literal .text .literal.* .text.*) - /* *libc.a:(.literal .text .literal.* .text.*) */ + *libc.a:*(.literal .text .literal.* .text.*) /* Xtensa basic functionality written in assembler should be placed in iram */ *xtensa.a:*(.literal .text .literal.* .text.*)