1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/tensorflow-lite: blacklist LLVM for cortexm cpu arch

This commit is contained in:
Alexandre Abadie 2020-01-16 14:03:43 +01:00
parent 48fbd446fe
commit cb50730fea
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -1 +1,6 @@
INCLUDES += -I$(PKGDIRBASE)/tensorflow-lite
ifneq (,$(filter cortex-m%,$(CPU_ARCH)))
# LLVM/clang triggers a hard fault on Cortex-M
TOOLCHAINS_BLACKLIST += llvm
endif