Skip to content

Commit

Permalink
Add details to cpp quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
ncteisen committed Mar 1, 2017
1 parent ae6df1b commit d13def2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/quickstart/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,15 @@ To install gRPC on your system, follow the instructions to build from source

While not mandatory, gRPC usually leverages Protocol Buffers v3 for service
definitions and data serialization. If you don't already have it installed on
your system, you can install the version cloned alongside gRPC:
your system, you can install the version cloned alongside gRPC. First ensure
that you are running these commands from within your cloned gRPC repository
from the previous step.

```sh
$ git clone -b {{ site.data.config.grpc_release_branch }} https://github.com/grpc/grpc
$ git submodule update --init
$ cd grpc/third_party/protobuf
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
```
Expand Down

0 comments on commit d13def2

Please # to comment.