1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00
2025-04-01 12:39:06 +02:00

20 lines
568 B
Makefile

include ../Makefile.pkg_common
USEPKG += lua
# This application uses getchar and thus expects input from stdio
USEMODULE += stdin
BOARD_WHITELIST += native32 native64 samr21-xpro
# currently fails with a Floating point exception - see #495
TEST_ON_CI_BLACKLIST += native32 native64
ifeq (,$(filter native native32 native64,$(BOARD)))
# This stack size is large enough to run Lua print() functions of
# various lengths. Other functions untested.
CFLAGS += -DTHREAD_STACKSIZE_MAIN='(THREAD_STACKSIZE_DEFAULT+2048)'
endif
include $(RIOTBASE)/Makefile.include