mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5ed0bafc92
- Adapted build system and test checks for the native boards to include native64 - Added `native64` to the same tests as `native`
17 lines
453 B
Makefile
17 lines
453 B
Makefile
include ../Makefile.pkg_common
|
|
|
|
USEPKG += lua
|
|
|
|
# This application uses getchar and thus expects input from stdio
|
|
USEMODULE += stdin
|
|
|
|
BOARD_WHITELIST += native native64 samr21-xpro
|
|
|
|
ifeq (,$(filter native 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
|