| OLD | NEW |
| 1 Protocol Buffers - Google's data interchange format | 1 Protocol Buffers - Google's data interchange format |
| 2 =================================================== | 2 =================================================== |
| 3 | 3 |
| 4 [](https
://travis-ci.org/google/protobuf) [](https://ci.appveyor.com/project/proto
buf/protobuf) | 4 [](https
://travis-ci.org/google/protobuf) [](https://ci.appveyor.com/project/proto
buf/protobuf) |
| 5 | 5 |
| 6 Copyright 2008 Google Inc. | 6 Copyright 2008 Google Inc. |
| 7 | 7 |
| 8 https://developers.google.com/protocol-buffers/ | 8 https://developers.google.com/protocol-buffers/ |
| 9 | 9 |
| 10 C++ Installation - Unix | 10 C++ Installation - Unix |
| 11 ----------------------- | 11 ----------------------- |
| 12 | 12 |
| 13 To build protobuf from source, the following tools are needed: | 13 To build protobuf from source, the following tools are needed: |
| 14 | 14 |
| 15 * autoconf | 15 * autoconf |
| 16 * automake | 16 * automake |
| 17 * libtool | 17 * libtool |
| 18 * curl (used to download gmock) | 18 * curl (used to download gmock) |
| 19 * make | 19 * make |
| 20 * g++ | 20 * g++ |
| 21 * unzip | 21 * unzip |
| 22 | 22 |
| 23 On Ubuntu, you can install them with: | 23 On Ubuntu, you can install them with: |
| 24 | 24 |
| 25 $ sudo apt-get install autoconf automake libtool curl make g++ unzip | 25 $ sudo apt-get install autoconf automake libtool curl make g++ unzip |
| 26 | 26 |
| 27 On other platforms, please use the corresponding package managing tool to | 27 On other platforms, please use the corresponding package managing tool to |
| 28 install them before proceeding. | 28 install them before proceeding. |
| 29 | 29 |
| 30 If you get the source from github, you need to generate the configure script | 30 If you get the source from github, you need to generate the configure script |
| 31 first: | 31 first: |
| 32 | 32 |
| 33 $ ./autogen.sh | 33 $ ./autogen.sh |
| 34 | 34 |
| 35 This will download gmock source (which is used for C++ Protocol Buffer | 35 This will download gmock source (which is used for C++ Protocol Buffer |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 203 |
| 204 ./configure --disable-shared | 204 ./configure --disable-shared |
| 205 | 205 |
| 206 Usage | 206 Usage |
| 207 ----- | 207 ----- |
| 208 | 208 |
| 209 The complete documentation for Protocol Buffers is available via the | 209 The complete documentation for Protocol Buffers is available via the |
| 210 web at: | 210 web at: |
| 211 | 211 |
| 212 https://developers.google.com/protocol-buffers/ | 212 https://developers.google.com/protocol-buffers/ |
| OLD | NEW |