From ed5dde00ecdd77846cfc7c42d695e4d5c75d7de4 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Thu, 16 Aug 2018 20:55:22 +0200 Subject: [PATCH] qDSA: blacklist LLVM/clang --- pkg/qDSA/Makefile.include | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/qDSA/Makefile.include b/pkg/qDSA/Makefile.include index d7ac128477..6d399ef6c2 100644 --- a/pkg/qDSA/Makefile.include +++ b/pkg/qDSA/Makefile.include @@ -11,3 +11,9 @@ endif export QDSA_IMPL INCLUDES += -I$(PKGDIRBASE)/qDSA/$(QDSA_IMPL) + +ifeq (cortex-m0plus,$(CPU_ARCH)) + # There are problems with the LLVM assembler and the Cortex-M0+ instruction + # set with this package + TOOLCHAINS_BLACKLIST += llvm +endif