1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/relic/Makefile.include

11 lines
393 B
Makefile
Raw Normal View History

2017-02-25 15:41:39 +01:00
INCLUDES += -I$(PKGDIRBASE)/relic/include
INCLUDES += -I$(BINDIR)/pkg-build/relic/include
ARCHIVES += $(BINDIR)/relic.a
2020-06-10 13:11:32 +02:00
ifneq (,$(filter cortex-m%,$(CPU_CORE)))
# relic package package is not using system includes right now, so
# many newlib headers (not even stdio.h) are not found.
# Fixed in #9821 for jerryscript, should be applicable here too.
TOOLCHAINS_BLACKLIST += llvm
endif