-
-
Save kuasha/9cc8e34fe18c8f0c53e48779ee637e0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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