1
0
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:
Alexandre Abadie 2019-11-11 15:36:42 +01:00
parent b32dd168a1
commit a4bff5f803
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View 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