1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Makefile.dep: don't include idle thread with !core_thread

This commit is contained in:
Benjamin Valentin 2024-01-09 18:59:58 +01:00
parent b9a76ea094
commit 14d0cf5d87

View File

@ -83,7 +83,9 @@ USEMODULE += $(filter cortexm_svc, $(FEATURES_USED))
# select core_idle_thread if the feature no_idle_thread is *not* used
ifeq (, $(filter no_idle_thread, $(FEATURES_USED)))
USEMODULE += core_idle_thread
ifneq (,$(filter core_thread, $(USEMODULE)))
USEMODULE += core_idle_thread
endif
endif
# use mpu_stack_guard if the feature is used