mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Alexandre Abadie
a4bff5f803
8bit architectures are not compatible. round function is not provided by the msp430 toolchain.
9 lines
286 B
Makefile
9 lines
286 B
Makefile
ifneq (,$(filter libfixmath-unittests,$(USEMODULE)))
|
|
# libfixmath unittests use shift operand incompatible with 8bit
|
|
# architecture int type.
|
|
FEATURES_BLACKLIST += arch_8bit
|
|
|
|
# The round function is not provided by the msp430 toolchain
|
|
FEATURES_BLACKLIST += arch_msp430
|
|
endif
|