Region `FLASH' overflowed

Hi,

for some reason FFT based codes cannot be upladed anymore on the daisy seed

asking chatgpt, it says I maxed out the 128k, …. on a 64mb daisy

thanks for your help on this

p:/program files/daisytoolchain/bin/../lib/gcc/arm-none-eabi/10.2.1/../../../../arm-none-eabi/bin/ld.exe: region `FLASH' overflowed by 17320 bytes
Memory region         Used Size  Region Size  %age Used
           FLASH:      148392 B       128 KB    113.21%
         DTCMRAM:          0 GB       128 KB      0.00%
            SRAM:       26932 B       512 KB      5.14%
          RAM_D2:       16704 B       288 KB      5.66%
          RAM_D3:          0 GB        64 KB      0.00%
         ITCMRAM:          0 GB        64 KB      0.00%
           SDRAM:         600 B        64 MB      0.00%
       QSPIFLASH:          0 GB         8 MB      0.00%
collect2.exe: error: ld returned 1 exit status
# Project Name

TARGET = Project

CFLAGS += -Os

# Sources

CPP_SOURCES = Project.cpp 

# Library Locations

LIBDAISY_DIR = ../DaisyExamples/libDaisy

DAISYSP_DIR = ../DaisyExamples/DaisySP

# C_SOURCES = arm_sin_f32.c arm_common_tables.c

#C_SOURCES = $(wildcard ../DaisyExamples/libDaisy/Drivers/CMSIS/DSP/Source/*/*.c)

ASM_SOURCES = \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal2.s

C_SOURCES = \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f32.c \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_init_f32.c  \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_f32.c \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/CommonTables/arm_const_structs.c \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/CommonTables/arm_common_tables.c \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal.c \

$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix8_f32.c

C_INCLUDES += \

-I$(LIBDAISY_DIR)/Drivers/CMSIS/DSP/Include 

# Core location, and generic makefile.

SYSTEM_FILES_DIR = $(LIBDAISY_DIR)/core

include $(SYSTEM_FILES_DIR)/Makefile

The 64MB number for Daisy Seed is about SDRAM size.The Flash size is 128KB for both RAM sizes.

Yeah it figures
but the question is how to do fft on 128k and why was it working and it is not anymore
thanks