mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6d42c9fcfe
This allows to disable nanospecs with DISABLE_MODULE += newlib_nano if a full-features version of newlib is desired.
9 lines
206 B
Makefile
9 lines
206 B
Makefile
USEMODULE += msp430_common msp430_common_periph
|
|
|
|
ifneq (,$(filter newlib,$(USEMODULE)))
|
|
DEFAULT_MODULE += newlib_nano
|
|
endif
|
|
|
|
# Make calls to malloc and friends thread-safe
|
|
USEMODULE += malloc_thread_safe
|