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.
21 lines
549 B
Makefile
21 lines
549 B
Makefile
# Tell the build system that the CPU depends on the Cortex-M common files:
|
|
USEMODULE += cortexm_common
|
|
|
|
# include common periph code
|
|
USEMODULE += cortexm_common_periph
|
|
|
|
# all cortex MCU's use newlib as libc
|
|
USEMODULE += newlib
|
|
|
|
# use the nano-specs of Newlib when available
|
|
USEMODULE += newlib_nano
|
|
|
|
# Export the peripheral drivers to be linked into the final binary:
|
|
USEMODULE += periph
|
|
|
|
# Use Hardware FPU by default if present
|
|
FEATURES_OPTIONAL += cortexm_fpu
|
|
ifneq (,$(filter cortexm_fpu,$(FEATURES_USED)))
|
|
DEFAULT_MODULE += cortexm_fpu
|
|
endif
|