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