commit | 042dfb3ec5ba2e3e0761c648f645d8a52ed83179 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Thu Jul 23 21:07:16 2020 -0400 |
committer | Davide Pesavento <davidepesa@gmail.com> | Thu Jul 23 21:07:16 2020 -0400 |
tree | e4fbeac45656073bde32784b2771537102b6a89f | |
parent | 89edd8f3a995b47d1ae4f63639a82b00247b2b0c [diff] |
build: align minimum build dependencies with ndn-cxx * Recommend gcc >= 7.4.0 * Require clang >= 4.0, or Xcode >= 9.0 on macOS * Silence an ABI-related diagnostic message from gcc on armv7 * Update Travis CI job matrix Refs: #5087, #5106 Change-Id: I659aa617dad0ed7eb23967215c37586ef168d88c
The PSync library implements the PSync protocol. It uses Invertible Bloom Lookup Table (IBLT), also known as Invertible Bloom Filter (IBF), to represent the state of a producer in partial sync mode and the state of a node in full sync mode. An IBF is a compact data structure where difference of two IBFs can be computed efficiently. In partial sync, PSync uses a Bloom Filter to represent the subscription list of the consumer.
PSync uses the ndn-cxx library.
To build PSync from source:
./waf configure ./waf sudo ./waf install
To build on memory constrained platform, please use ./waf -j1
instead of ./waf
. The command will disable parallel compilation.
If configured with tests (./waf configure --with-tests
), the above commands will also generate unit tests that can be run with ./build/unit-tests
.
Please submit any bug reports or feature requests to the PSync issue tracker.
We greatly appreciate contributions to the PSync code base, provided that they are licensed under the LGPL 3.0+ or a compatible license (see below). If you are new to the NDN software community, please read the Contributor's Guide to get started.
PSync is an open source project licensed under the LGPL version 3. See COPYING.md
for more information.