diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-11 10:59:11 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-11 10:59:11 +0200 |
commit | e8c66ee36bdbaa9652a4e838cabeff4107f50da1 (patch) | |
tree | b4192f4fbcb23dc02c496ea3932b39ea6d58e992 | |
parent | 53349fb634e79641a7a728f6d030c5eda0702477 (diff) | |
download | yosys-e8c66ee36bdbaa9652a4e838cabeff4107f50da1.tar.gz yosys-e8c66ee36bdbaa9652a4e838cabeff4107f50da1.tar.bz2 yosys-e8c66ee36bdbaa9652a4e838cabeff4107f50da1.zip |
Fixed MXE readline support
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -102,6 +102,9 @@ endif ifeq ($(ENABLE_READLINE),1) CXXFLAGS += -DYOSYS_ENABLE_READLINE LDLIBS += -lreadline +ifeq ($(CONFIG),mxe) +LDLIBS += -lpdcurses +endif endif ifeq ($(ENABLE_PLUGINS),1) @@ -330,7 +333,6 @@ config-mxe: clean echo 'ENABLE_TCL := 0' >> Makefile.conf echo 'ENABLE_ABC := 0' >> Makefile.conf echo 'ENABLE_PLUGINS := 0' >> Makefile.conf - echo 'ENABLE_READLINE := 0' >> Makefile.conf config-gprof: clean echo 'CONFIG := gcc' > Makefile.conf |