buil error in release not in debug

hello ,

I am a mistake when i build in release , i think it 's a probleme of path but I 'm not sure. no probleme with the debug build.

Thanks for your answers

my error:

compressing blram.bin to blramzip.bin
Using LZSS Encoder/Decode (v2)

Input bytes: 74112
Output bytes: 39139
Compression ratio: 48%
Unable to open ./…/…/…/…/src/bsp/platforms/connectcorewi9p9215_a_esp/bootldr.dat.
Unable to process output file ./…/…/…/…/src/bsp/platforms/connectcorewi9p9215_a_esp/bootldr.dat
make[3]: *** [blram.o] Error 2
make[3]: Target all' not remade because of errors. make[2]: *** [bootloader/ramImage/blram.o] Error 2 make[2]: Target all’ not remade because of errors.
make[1]: *** [mylocalall] Error 2
make[1]: Target all' not remade because of errors. make: *** [bsp/7_4/connectcorewi9p9215_a/lib/libbsp.a] Error 2 make: Target all’ not remade because of errors.
Build complete for project ANTARES-WIFI BOX

my flash memory map:

boot loader 128 K
Application image 1600K
backup image 1664 K
File System 512K
NVRAM 128 K

Verify that your makefile has a line that looks like the one below to make is finding the bsp directory.
@echo ‘Building Bsp’
-rm -r -f $(NETOSDIR)/src/bsp/platforms/$(PLATFORM)
-rm -r -f $(NETOSDIR)/src/bsp/objs/32b/gnu/$(PLATFORM)
-rm -r -f $(NETOS_BSPLIBPATH)
$(CYGWINDIR)/bin/mkdir $(NETOSDIR)/src/bsp/platforms/$(PLATFORM)
$(CYGWINDIR)/bin/mkdir -p $(NETOSDIR)/src/bsp/objs/32b/gnu/$(PLATFORM)
$(CYGWINDIR)/bin/mkdir -p $(NETOS_BSPLIBPATH)
@echo ‘** Copy project files to bsp’
cp -R -p ${PROJPLATFORMDIR}/* $(NETOSDIR)/src/bsp/platforms/$(PLATFORM)/
@echo ‘** Build bsp’
-$(MAKE) -k -s -j2 -C $(NETOSDIR)/src/bsp/ PLATFORM=$(PLATFORM) BOARD_TYPE=$(BOARD_TYPE) clean BUILD_BOOTLOADER=TRUE NETOS_OPT=“” NETOS_WARNINGS=“-Wall” BUILD_BOOTLOADER=TRUE