2014-12-28 18:27:03 +01:00
|
|
|
PKG_NAME=micro-ecc
|
|
|
|
PKG_URL=https://github.com/kmackay/micro-ecc.git
|
2020-10-20 18:22:33 +02:00
|
|
|
PKG_VERSION=4b1709c17abbe938d6d8811f4c7c5d082a144799
|
2017-01-08 21:55:46 +01:00
|
|
|
PKG_LICENSE=BSD-2-Clause
|
2014-12-28 18:27:03 +01:00
|
|
|
|
2019-10-02 12:47:02 +02:00
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
2014-12-28 18:27:03 +01:00
|
|
|
|
2023-05-20 22:45:37 +02:00
|
|
|
# With LLVM register allocation fails. We can tell LLVM to spend more time
|
|
|
|
# on trying to allocate registers using the following snippet:
|
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
|
|
CFLAGS += -mllvm -exhaustive-register-search
|
|
|
|
endif
|
|
|
|
|
2019-06-27 15:18:37 +02:00
|
|
|
all:
|
2021-03-12 15:50:14 +01:00
|
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(RIOTBASE)/Makefile.base
|