mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Fix host build of mkimxboot, mknwzboot, nwztools, and rbutil with crypto++
Necessary to get working builds on my Fedora 29 system. Change-Id: Ia6232427c959629ade9a85fc412738f688facedb
This commit is contained in:
parent
9605237349
commit
07084f62c4
6 changed files with 53 additions and 14 deletions
|
|
@ -3,9 +3,23 @@ CC=gcc
|
|||
CXX=g++
|
||||
LD=g++
|
||||
PROFILE=
|
||||
CFLAGS=-g $(PROFILE) -std=c99 -Wall $(DEFINES) `pkg-config --cflags libcrypto++`
|
||||
CXXFLAGS=-g $(PROFILE) -Wall $(DEFINES) `pkg-config --cflags libcrypto++`
|
||||
LDFLAGS=$(PROFILE) `pkg-config --libs libcrypto++` -lpthread
|
||||
PKGCONFIG := $(CROSS)pkg-config
|
||||
|
||||
# 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.
|
||||
LIBCRYPTO_NAMES = libcryptopp libcrypto++ cryptopp crypto++
|
||||
|
||||
$(foreach l,$(LIBCRYPTO_NAMES),\
|
||||
$(eval LDOPTS += $(shell $(PKGCONFIG) --silence-errors --libs $(l))))
|
||||
$(foreach l,$(LIBCRYPTO_NAMES),\
|
||||
$(eval CFLAGS += $(shell $(PKGCONFIG) --silence-errors --cflags $(l))))
|
||||
$(foreach l,$(LIBCRYPTO_NAMES),\
|
||||
$(eval CXXFLAGS += $(shell $(PKGCONFIG) --silence-errors --cflags $(l))))
|
||||
|
||||
CXXFLAGS=-g $(PROFILE) -Wall $(DEFINES)
|
||||
CFLAGS=-g $(PROFILE) -Wall -std=c99 $(DEFINES)
|
||||
LDFLAGS=$(PROFILE) $(LDOPTS) -lpthread
|
||||
|
||||
BINS=upgtool
|
||||
|
||||
all: $(BINS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue