tag | 7cacd45b4979b32b3299de2dc0a11088dd08e3ba | |
---|---|---|
tagger | Garrett D'Amore <garrett@damore.org> | Fri Oct 13 11:55:19 2017 -0700 |
object | 2ca3c7e70193b81aefe09245f3b452217bf28589 |
Tag for 1.1.0-rc1
commit | 2ca3c7e70193b81aefe09245f3b452217bf28589 | [log] [tgz] |
---|---|---|
author | Garrett D'Amore <garrett@damore.org> | Fri Oct 13 11:54:08 2017 -0700 |
committer | Garrett D'Amore <garrett@damore.org> | Fri Oct 13 11:54:08 2017 -0700 |
tree | 8a7cc577d5b666a82b4326d69a677da757351391 | |
parent | c9c77919140c3c2b002b26a4571899637753ee16 [diff] |
Version 1.1.0 release candidate 1.
The nanomsg library is a simple high-performance implementation of several “scalability protocols”. These scalability protocols are light-weight messaging protocols which can be used to solve a number of very common messaging patterns, such as request/reply, publish/subscribe, surveyor/respondent, and so forth. These protocols can run over a variety of transports such as TCP, UNIX sockets, and even WebSocket.
For more information check the website.
Windows.
cmake
POSIX (Linux, MacOS X, UNIX)
cmake
Documentation (optional)
asciidoctor
(This assumes you want to use the default generator. To use a different generator specify -G <generator>
to the cmake command line. The list of generators supported can be obtained using cmake --help
.)
mkdir build
cd build
cmake ..
(You can add -DCMAKE_INSTALL_PREFIX=/usr/local
or some other directory. You can specify a release build with -DCMAKE_BUILD_TYPE=Release
.cmake --build .
ctest -C Debug .
cmake --build . --target install
NB: This may have to be done as a privileged user.ldconfig
(As a privileged or root user.)We normally build a dynamic library (.so or .DLL) by default.
If you want a static library (.a or .LIB), configure by passing -DNN_STATIC_LIB=ON
to the cmake
command.
You will also need to define NN_STATIC_LIB
in your compilation environment when building programs that use this library.
This is required because of the way Windows DLL exports happen. This is not necessary when compiling on POSIX platforms.
When using the static library on Windows, you will also need to link with the ws2_32, mswsock, and advapi32 libraries, as nanomsg depends on them.
POSIX systems will need to link with the libraries normally used when building network applications. For some systems this might mean -lnsl or -lsocket.
Website: http://nanomsg.org
Source code: https://github.com/nanomsg/nanomsg
Documentation: http://nanomsg.org/documentation.html
Bug tracker: https://github.com/nanomsg/nanomsg/issues
Mailing list: nanomsg@freelists.org
Gitter Chat: https://gitter.im/nanomsg/nanomsg
IRC chatroom: #nanomsg at irc.freenode.net/8001