mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
pkg/libfixmath: blacklist architectures not supported by unittests
8bit architectures are not compatible. round function is not provided by the msp430 toolchain.
This commit is contained in:
parent
b32dd168a1
commit
a4bff5f803
8
pkg/libfixmath/Makefile.dep
Normal file
8
pkg/libfixmath/Makefile.dep
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user