mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3291f94e07
* Added arch_64bit feature and added it to all packages that require 32 bit. * hacl, wolfssl: Fixed different types between function declaration and implementation. * lwip: Add required flag for 64 bit and bug fix in `lwip_sock`. * micro-ecc: Workaround for GCC warning when using `__int128`.
13 lines
410 B
Makefile
13 lines
410 B
Makefile
ifneq (,$(filter tlsf-malloc,$(USEMODULE)))
|
|
ifneq (,$(filter newlib,$(USEMODULE)))
|
|
USEMODULE += tlsf-malloc_newlib
|
|
else ifneq (,$(filter native,$(BOARD)))
|
|
USEMODULE += tlsf-malloc_native
|
|
else
|
|
$(warning tlsf-malloc can only be used on native or on platforms using newlib)
|
|
endif
|
|
endif
|
|
|
|
# tlsf is not compatible with 8bit and 16bit architectures
|
|
FEATURES_REQUIRED_ANY += arch_32bit|arch_64bit
|