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`
28 lines
762 B
Makefile
28 lines
762 B
Makefile
BOARD ?= stm32f429i-disc1
|
|
include ../Makefile.pkg_common
|
|
|
|
# No interactive_sync
|
|
DISABLE_MODULE += test_utils_interactive_sync
|
|
|
|
USEPKG += lvgl
|
|
USEMODULE += lvgl_contrib
|
|
USEMODULE += lvgl_extra_widget_chart
|
|
USEMODULE += lvgl_extra_widget_win
|
|
USEMODULE += lvgl_extra_layout_flex
|
|
USEMODULE += lvgl_extra_theme_default
|
|
USEMODULE += lvgl_extra_theme_default_dark
|
|
|
|
# blacklist native64 until https://github.com/RIOT-OS/riotdocker/pull/241 is resolved
|
|
BOARD_BLACKLIST += native64
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# SDL requires more stack
|
|
ifneq (,$(filter native native64,$(BOARD)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=64*1024
|
|
else ifneq (,$(filter esp%,$(CPU_FAM)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=4*1024
|
|
else
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=2*1024
|
|
endif
|