Skip to content

Instantly share code, notes, and snippets.

@kuasha
Last active April 20, 2019 18:47
Show Gist options
  • Save kuasha/9cc8e34fe18c8f0c53e48779ee637e0c to your computer and use it in GitHub Desktop.
Save kuasha/9cc8e34fe18c8f0c53e48779ee637e0c to your computer and use it in GitHub Desktop.
sudo apt-get install libtool pkg-config build-essential autoconf automake uuid-dev
git clone git://github.com/zeromq/libzmq.git
cd libzmq
./autogen.sh
# do not specify "--with-libsodium" if you prefer to use internal tweetnacl security implementation (recommended for development)
./configure --with-libsodium
make check
sudo make install
sudo ldconfig
cd ..
git clone git://github.com/zeromq/czmq.git
cd czmq
./autogen.sh && ./configure && make check
sudo make install
sudo ldconfig
cd ..
git clone https://github.com/zeromq/cppzmq.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment