annotate src/capnproto-git-20161025/c++/README.txt @ 83:ae30d91d2ffe
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author |
Chris Cannam |
date |
Fri, 07 Feb 2020 11:51:13 +0000 |
parents |
9530b331f8c1 |
children |
|
rev |
line source |
cannam@48
|
1 Cap'n Proto - Insanely Fast Data Serialization Format
|
cannam@48
|
2 Copyright 2013-2015 Sandstorm Development Group, Inc.
|
cannam@48
|
3 https://capnproto.org
|
cannam@48
|
4
|
cannam@48
|
5 Cap'n Proto is an insanely fast data interchange format and capability-based
|
cannam@48
|
6 RPC system. Think JSON, except binary. Or think of Google's Protocol Buffers
|
cannam@48
|
7 (http://protobuf.googlecode.com), except faster. In fact, in benchmarks,
|
cannam@48
|
8 Cap'n Proto is INFINITY TIMES faster than Protocol Buffers.
|
cannam@48
|
9
|
cannam@48
|
10 Full installation and usage instructions and other documentation are maintained
|
cannam@48
|
11 on the Cap'n Proto web site:
|
cannam@48
|
12 http://kentonv.github.io/capnproto/install.html
|
cannam@48
|
13
|
cannam@48
|
14 WARNING: Cap'n Proto requires a modern compiler. See the above link for
|
cannam@48
|
15 detailed requirements.
|
cannam@48
|
16
|
cannam@48
|
17 To build and install (from a release package), simply do:
|
cannam@48
|
18 ./configure
|
cannam@48
|
19 make -j4 check
|
cannam@48
|
20 sudo make install
|
cannam@48
|
21
|
cannam@48
|
22 The -j4 allows the build to use up to four processor cores instead of one.
|
cannam@48
|
23 You can increase this number if you have more cores. Specifying "check"
|
cannam@48
|
24 says to run tests in addition to building. This can be omitted to make the
|
cannam@48
|
25 build slightly faster, but running tests and reporting failures back to the
|
cannam@48
|
26 developers helps us out!
|
cannam@48
|
27
|