mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 22:43:50 +01:00
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.
9 lines
221 B
Makefile
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
|