diff options
author | Fabio Utzig <utzig@utzig.org> | 2015-01-08 09:52:30 -0200 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2015-01-08 09:52:30 -0200 |
commit | 0ca889a4331b4439444a64b4b1fde9a31472fd1a (patch) | |
tree | c3d8ad775e4afc58b676110200b474f0f3ebffef /Makefile | |
parent | 1d96277f5d4c615ca4018d9a6e867c980db3b73a (diff) | |
download | yosys-0ca889a4331b4439444a64b4b1fde9a31472fd1a.tar.gz yosys-0ca889a4331b4439444a64b4b1fde9a31472fd1a.tar.bz2 yosys-0ca889a4331b4439444a64b4b1fde9a31472fd1a.zip |
Add homebrew's readline paths
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,9 +37,9 @@ LDLIBS = -lstdc++ -lm SED = sed ifeq (Darwin,$(findstring Darwin,$(shell uname))) - # add macports include and library path to search directories, don't use '-rdynamic' and '-lrt': - CXXFLAGS += -I/opt/local/include - LDFLAGS += -L/opt/local/lib + # add macports/homebrew include and library path to search directories, don't use '-rdynamic' and '-lrt': + CXXFLAGS += -I/opt/local/include -I/usr/local/opt/readline/include + LDFLAGS += -L/opt/local/lib -L/usr/local/opt/readline/lib SED = gsed else LDFLAGS += -rdynamic |