From: Siesh1oo Date: Wed, 12 Mar 2014 13:42:26 +0000 (+0100) Subject: - Makefile: don't export DYLD_LIBRARY_PATH/LD_LIBRARY_PATH: not needed if we link... X-Git-Tag: yosys-0.3.0~57^2~7 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c621bfa746b1ca2d698b09d7b9e65da9d191a39b;p=yosys.git - Makefile: don't export DYLD_LIBRARY_PATH/LD_LIBRARY_PATH: not needed if we link minisat objects instead of library --- diff --git a/Makefile b/Makefile index 9460e3413..1eef767b3 100644 --- a/Makefile +++ b/Makefile @@ -30,13 +30,11 @@ export PATH := $(PWD):$(DESTDIR)/bin:$(PATH) ifeq (Darwin,$(findstring Darwin,$(shell uname))) # add macports include and library path to search directories, don't use '-rdynamic' and '-lrt': - export DYLD_LIBRARY_PATH := ${DESTDIR}/lib:$(DYLD_LIBRARY_PATH) CXXFLAGS += -I/opt/local/include LDFLAGS += -L/opt/local/lib QMAKE = qmake SED = gsed else - export LD_LIBRARY_PATH := ${DESTDIR}/lib:$(LD_LIBRARY_PATH) LDFLAGS += -rdynamic LDLIBS += -lrt QMAKE = qmake-qt4