Skip to content

Instantly share code, notes, and snippets.

@kessler
Last active December 22, 2015 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kessler/6412374 to your computer and use it in GitHub Desktop.
Save kessler/6412374 to your computer and use it in GitHub Desktop.
zeromq install
TARGET=zeromq-4.0.5
sudo yum install libuuid-devel uuid-devel
wget http://download.zeromq.org/$TARGET.tar.gz
tar -xzf $TARGET.tar.gz
cd $TARGET
./configure
make
sudo make install
sudo sh -c 'echo /usr/local/lib > /etc/ld.so.conf.d/zmq.conf'
sudo ldconfig
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
echo 'export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig' >> ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment