mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d7e68d1d01
micro-ecc now has upstream RIOT support, we can drop the patch.
12 lines
301 B
Makefile
12 lines
301 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/micro-ecc
|
|
|
|
CFLAGS += -Wno-unused-parameter
|
|
CFLAGS += -Wno-unused-function
|
|
CFLAGS += -Wno-unused-variable
|
|
|
|
ifneq (,$(filter cortex-m0%,$(CPU_CORE)))
|
|
# LLVM/clang can't handle the inline assembler instructions on M0 in this
|
|
# package
|
|
TOOLCHAINS_BLACKLIST += llvm
|
|
endif
|