mirror of https://github.com/YosysHQ/yosys.git
- Makefile: don't export DYLD_LIBRARY_PATH/LD_LIBRARY_PATH: not needed if we link minisat objects instead of library
This commit is contained in:
parent
aead1b75e8
commit
50423e3935
2
Makefile
2
Makefile
|
@ -30,13 +30,11 @@ export PATH := $(PWD):$(DESTDIR)/bin:$(PATH)
|
||||||
|
|
||||||
ifeq (Darwin,$(findstring Darwin,$(shell uname)))
|
ifeq (Darwin,$(findstring Darwin,$(shell uname)))
|
||||||
# add macports include and library path to search directories, don't use '-rdynamic' and '-lrt':
|
# 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
|
CXXFLAGS += -I/opt/local/include
|
||||||
LDFLAGS += -L/opt/local/lib
|
LDFLAGS += -L/opt/local/lib
|
||||||
QMAKE = qmake
|
QMAKE = qmake
|
||||||
SED = gsed
|
SED = gsed
|
||||||
else
|
else
|
||||||
export LD_LIBRARY_PATH := ${DESTDIR}/lib:$(LD_LIBRARY_PATH)
|
|
||||||
LDFLAGS += -rdynamic
|
LDFLAGS += -rdynamic
|
||||||
LDLIBS += -lrt
|
LDLIBS += -lrt
|
||||||
QMAKE = qmake-qt4
|
QMAKE = qmake-qt4
|
||||||
|
|
Loading…
Reference in New Issue