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 <gabriel.valcazar@digi.com>
This commit is contained in:
parent
7413e47d8c
commit
ff20d8c0a9
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue