1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

Merge pull request #13143 from aabadie/pr/pkg/tensorflow-lite-llvm

pkg/tensorflow-lite: blacklist LLVM for cortexm cpu arch
This commit is contained in:
Alexandre Abadie 2020-01-17 09:35:51 +01:00 committed by GitHub
commit c7f29c2ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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