aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoroldtopman <oldtopman@gmail.com>2016-11-21 23:11:58 -0700
committeroldtopman <oldtopman@gmail.com>2016-11-21 23:11:58 -0700
commit277f47857282fbf0740eaeeaaa0325631d4bb7dd (patch)
treed13cadbd67348b4920049bb5d0b9449fb0725f15 /Makefile
parent3b73d3f140b1ebf211847fe5ece9d8b01b971bc2 (diff)
downloadyosys-277f47857282fbf0740eaeeaaa0325631d4bb7dd.tar.gz
yosys-277f47857282fbf0740eaeeaaa0325631d4bb7dd.tar.bz2
yosys-277f47857282fbf0740eaeeaaa0325631d4bb7dd.zip
Added optional flag for linking curses with readline.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index aba77753d..567b1a5a1 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@ ENABLE_LIBYOSYS := 0
# other configuration flags
ENABLE_GPROF := 0
ENABLE_NDEBUG := 0
+LINK_CURSES := 0
# clang sanitizers
SANITIZER =
@@ -196,6 +197,10 @@ endif
ifeq ($(ENABLE_READLINE),1)
CXXFLAGS += -DYOSYS_ENABLE_READLINE
LDLIBS += -lreadline
+ifeq ($(LINK_CURSES),1)
+LDLIBS += -lcurses
+ABCMKARGS += "ABC_READLINE_LIBRARIES=-lcurses -lreadline"
+endif
ifeq ($(CONFIG),mxe)
LDLIBS += -lpdcurses
endif