How do I compile jzmq for ZeroMQ on OSX?

前端 未结 8 2183
一个人的身影
一个人的身影 2021-01-31 12:37

Trying to follow the directions from: http://github.com/zeromq/jzmq

I installed pkg-config using Homebrew and then I run the following commands: ./autogen.sh ./configure

8条回答
  •  被撕碎了的回忆
    2021-01-31 13:10

    A better solution is:

    eval `brew --config | grep HOMEBREW_PREFIX | sed 's/: /=/'`
    sudo bash -c 'echo '$HOMEBREW_PREFIX/share/aclocal' >> `aclocal --print-ac-dir`/dirlist'
    

    This will allow the version of aclocal that ships with OSX to find any macros installed by homebrew packages.

提交回复
热议问题