Skip to content

Commit 37fa08a

Browse files
committed
interpreters/python: set ROMFS-generated data to const char
This allows the data to be placed in the .rodata section, which can be allocated in the flash or other read-only storage, freeing the internal memory.
1 parent 8cf7e3c commit 37fa08a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreters/python/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ romfs_cpython_modules.img : $(TARGETLIBPYTHON) checkgenromfs
188188
@genromfs -f $@ -d $(TARGETMODULES) -V "ROMFS_Test" || { echo "genromfs failed" ; exit 1 ; }
189189

190190
romfs_cpython_modules.h : romfs_cpython_modules.img
191-
@xxd -i $< >$@ || { echo "xxd of $< failed" ; exit 1 ; }
191+
@xxd -i $< | sed -e "s/^unsigned/static const unsigned/g" >$@ || { echo "xxd of $< failed" ; exit 1 ; }
192192

193193
context:: $(CPYTHON_UNPACKNAME)
194194

0 commit comments

Comments
 (0)