mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ea2f963302
This adds cortexm_fpu to the DEFAULT_MODULE list when the feature cortexm_fpu is provided by the architecture. It also moves the dependency resolution of this module to the architecture-specific Makefile.dep file.
13 lines
357 B
Makefile
13 lines
357 B
Makefile
FEATURES_PROVIDED += arch_32bit
|
|
FEATURES_PROVIDED += arch_arm
|
|
FEATURES_PROVIDED += arch_cortexm
|
|
FEATURES_PROVIDED += periph_pm
|
|
FEATURES_PROVIDED += cpp
|
|
FEATURES_PROVIDED += cpu_check_address
|
|
FEATURES_PROVIDED += ssp
|
|
|
|
# cortex-m4f and cortex-m7 provide FPU support
|
|
ifneq (,$(filter $(CPU_ARCH),cortex-m4f cortex-m7))
|
|
FEATURES_PROVIDED += cortexm_fpu
|
|
endif
|