From: Sergey Kvachonok Date: Thu, 24 Mar 2016 13:07:05 +0000 (+0300) Subject: Allow redefining pkg-config Makefile command. X-Git-Tag: yosys-0.7~289^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d53a16e43a6db35b15584e582c64cfac0f7e5e3d;p=yosys.git Allow redefining pkg-config Makefile command. Example usage: $ make CXX=i686-w64-mingw32-g++ PKG_CONFIG=i686-w64-mingw32-pkg-config --- diff --git a/Makefile b/Makefile index a0dde6ff2..b1d94e16a 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,8 @@ VPATH := $(YOSYS_SRC) CXXFLAGS += -Wall -Wextra -ggdb -I. -I"$(YOSYS_SRC)" -MD -D_YOSYS_ -fPIC -I$(PREFIX)/include LDFLAGS += -L$(LIBDIR) LDLIBS = -lstdc++ -lm + +PKG_CONFIG = pkg-config SED = sed BISON = bison @@ -187,8 +189,8 @@ endif endif ifeq ($(ENABLE_PLUGINS),1) -CXXFLAGS += -DYOSYS_ENABLE_PLUGINS $(shell pkg-config --silence-errors --cflags libffi) -LDLIBS += $(shell pkg-config --silence-errors --libs libffi || echo -lffi) -ldl +CXXFLAGS += -DYOSYS_ENABLE_PLUGINS $(shell $(PKG_CONFIG) --silence-errors --cflags libffi) +LDLIBS += $(shell $(PKG_CONFIG) --silence-errors --libs libffi || echo -lffi) -ldl endif ifeq ($(ENABLE_TCL),1)