From ff20d8c0a95374a5ed9630908886d68ab1237cf8 Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Tue, 5 Nov 2019 15:35:30 +0100 Subject: [PATCH] cryptochip-gen-random: remove --static flag from LDLIBS The newest version of cryptoauthlib is built as a shared library instead of a static one. https://jira.digi.com/browse/DEL-6835 Signed-off-by: Gabriel Valcazar --- cryptochip-get-random/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptochip-get-random/Makefile b/cryptochip-get-random/Makefile index 32e7655..eb712f5 100644 --- a/cryptochip-get-random/Makefile +++ b/cryptochip-get-random/Makefile @@ -20,7 +20,7 @@ PROGRAM := cryptochip-gen-random CFLAGS += -Wall CFLAGS += $(shell pkg-config --cflags cryptoauthlib) -LDLIBS += $(shell pkg-config --libs --static cryptoauthlib) +LDLIBS += $(shell pkg-config --libs cryptoauthlib) all: $(PROGRAM)