Mercurial > hg > sv-dependency-builds
annotate src/capnproto-git-20161025/c++/README.txt @ 148:b4bfdf10c4b3
Update Win64 capnp builds to v0.6
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 22 May 2017 18:56:49 +0100 |
parents | 1ac99bfc383d |
children |
rev | line source |
---|---|
cannam@133 | 1 Cap'n Proto - Insanely Fast Data Serialization Format |
cannam@133 | 2 Copyright 2013-2015 Sandstorm Development Group, Inc. |
cannam@133 | 3 https://capnproto.org |
cannam@133 | 4 |
cannam@133 | 5 Cap'n Proto is an insanely fast data interchange format and capability-based |
cannam@133 | 6 RPC system. Think JSON, except binary. Or think of Google's Protocol Buffers |
cannam@133 | 7 (http://protobuf.googlecode.com), except faster. In fact, in benchmarks, |
cannam@133 | 8 Cap'n Proto is INFINITY TIMES faster than Protocol Buffers. |
cannam@133 | 9 |
cannam@133 | 10 Full installation and usage instructions and other documentation are maintained |
cannam@133 | 11 on the Cap'n Proto web site: |
cannam@133 | 12 http://kentonv.github.io/capnproto/install.html |
cannam@133 | 13 |
cannam@133 | 14 WARNING: Cap'n Proto requires a modern compiler. See the above link for |
cannam@133 | 15 detailed requirements. |
cannam@133 | 16 |
cannam@133 | 17 To build and install (from a release package), simply do: |
cannam@133 | 18 ./configure |
cannam@133 | 19 make -j4 check |
cannam@133 | 20 sudo make install |
cannam@133 | 21 |
cannam@133 | 22 The -j4 allows the build to use up to four processor cores instead of one. |
cannam@133 | 23 You can increase this number if you have more cores. Specifying "check" |
cannam@133 | 24 says to run tests in addition to building. This can be omitted to make the |
cannam@133 | 25 build slightly faster, but running tests and reporting failures back to the |
cannam@133 | 26 developers helps us out! |
cannam@133 | 27 |