From 1737a690bc71d92daf27fe45d9a398ded02dcd59 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 26 Sep 2025 00:49:30 +1000 Subject: [PATCH] esp8266/boards: Replace stackctrl.o with cstack.o in obj file list. This was missed in d441788975a6dfb277ad9a3d54d651ae48817d16. Signed-off-by: Damien George --- ports/esp8266/boards/esp8266_common.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/esp8266/boards/esp8266_common.ld b/ports/esp8266/boards/esp8266_common.ld index 206c3f14b4..c14afdfff0 100644 --- a/ports/esp8266/boards/esp8266_common.ld +++ b/ports/esp8266/boards/esp8266_common.ld @@ -93,6 +93,7 @@ SECTIONS *py/binary.o*(.literal* .text*) *py/builtin*.o*(.literal* .text*) *py/compile.o*(.literal* .text*) + *py/cstack.o*(.literal* .text*) *py/emit*.o*(.literal* .text*) *py/persistentcode*.o*(.literal* .text*) *py/formatfloat.o*(.literal* .text*) @@ -121,7 +122,6 @@ SECTIONS *py/sequence.o*(.literal* .text*) *py/showbc.o*(.literal* .text*) *py/smallint.o*(.literal* .text*) - *py/stackctrl.o*(.literal* .text*) *py/stream.o*(.literal* .text*) *py/unicode.o*(.literal* .text*) *py/vm.o*(.literal* .text*)