Closed vv111y closed 5 years ago
OK, it looks like emacs-plus
has module support by default. To test if your Emacs has module support could you tell me the value of the variable module-file-suffix
?
Also could you replace the line
--enable-drafts=yes --enable-libunwind=no && \
with
--enable-drafts=yes --enable-libunwind=no --enable-static=no && \
in the Makefile
at the top level of the emacs-zmq
directory. It is the second to last line in the file. And then run make
and see if it goes through.
Problem solved.
fwiw prefix is .so
So I know for the future, what was the issue?
Thanks for the fix, can't wait to get going with this package.
It looks like libzmq
tries to build both a static library (libzmq.a
) and dynamic library (libzmq.so
) by default, but emacs-zmq
links to the dynamic library so there is no need to also build the static one, hence the --enable-static=no
. Setting --enable-static=no
just side steps the real problem. I'm not actually sure what the error is, it may have to do with the version of the clang
compiler you are using.
Hi, I'm trying to get this working on a mac and the build fails.
For emacs-plus via homebrew
make test
results inModules not supported
.I tried the current release from emacsfromacosx, which did seem to have modules support --
ZMQ module not found. Build it? (y or n)
came up. However same error as above occurred.