ZeroMQ

Table of Contents

build and install libsodium1

Install

# Download a tarball of libsodium
$ ./configure
$ make && make check
# make install
$ pkg-config --list-all | grep libsodium
libsodium                           libsodium - A modern and easy-to-use crypto library

build and install ZeroMQ

git clone https://github.com/zeromq/libzmq
./autogen.sh && ./configure && make -j 4
make check && make install && sudo ldconfig

Or, using CMake:

git clone https://github.com/zeromq/libzmq
mkdir cmake-build && cd cmake-build
cmake .. && make -j 4
make test && make install && sudo ldconfig

cc



Footnotes:

Author: Shi Shougang

Created: 2016-05-30 Mon 00:04

Emacs 24.3.1 (Org mode 8.2.10)

Validate