mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ed4411602c
- Remove file related functions from loader. * All packages must be builtin. - Remove os.tmpname. - Interface with TLSF. - Don't abort() when out of memory.
10 lines
302 B
Lua
10 lines
302 B
Lua
SRC := $(filter-out loadlib.c lua.c luac.c,$(wildcard *.c))
|
|
|
|
CFLAGS += -fstack-usage -fconserve-stack \
|
|
-DLUA_MAXCAPTURES=16 \
|
|
-DL_MAXLENNUM=50
|
|
# Enable these options to debug stack usage
|
|
# -Wstack-usage=128 -Wno-error=stack-usage=128
|
|
|
|
include $(RIOTBASE)/Makefile.base
|