1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00
RIOT/pkg/micro-ecc/Makefile.include
Marian Buschsieweke 358636045e
pkg/micro-ecc: blacklist LLVM
LLVM was already blacklisted for some specific Cortex-M targets due
to register allocation failing. The issue now has spread. Rather than
starting a whack-a-mole game, let's disable LLVM altogether for that
package.
2023-07-18 12:24:09 +02:00

9 lines
221 B
Makefile

INCLUDES += -I$(PKGDIRBASE)/micro-ecc
CFLAGS += -Wno-unused-parameter
CFLAGS += -Wno-unused-function
CFLAGS += -Wno-unused-variable
# llvm fails to allocate registers for inline assembly :/
TOOLCHAINS_BLACKLIST += llvm