1
0
Fork 0
forked from len0rd/rockbox

mkimxboot: fix compilation issues with crypto lib

Change-Id: Ic81583dc7e872d332cbd4fd87143579cceeda484
This commit is contained in:
Cástor Muñoz 2017-04-13 21:58:16 +02:00
parent fbbba9292b
commit d6452729e3

View file

@ -10,7 +10,13 @@ IMXTOOLS_DIR=../../utils/imxtools/sbtools/
CFLAGS += -I$(IMXTOOLS_DIR) -Wall
# std=gnu99 is required by MinGW on Windows (c99 is sufficient for Linux / MXE)
CFLAGS += -std=gnu99 -g -O3
LDFLAGS += -lcrypto++
# Distros could use different names for the crypto library. We try a list
# of candidate names, only one of them should be the valid one.
PKGCONFIG := $(CROSS)pkg-config
LIBCRYPTO_NAMES = libcryptopp libcrypto++ cryptopp crypto++
$(foreach l,$(LIBCRYPTO_NAMES),\
$(eval LDOPTS += $(shell $(PKGCONFIG) --silence-errors --libs $(l))))
OUTPUT = mkimxboot