mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-26 15:03:53 +01:00
20 lines
568 B
Makefile
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
|