aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp
diff options
context:
space:
mode:
authorGravatar Srini Polavarapu <psrini@google.com>2018-02-08 11:53:35 -0800
committerGravatar Srini Polavarapu <psrini@google.com>2018-02-08 11:53:35 -0800
commit3cca82534dee7c78347fcf07a03150cfa90d943a (patch)
treee593fc9a1e61f1e5a26da90a6a4af881613ffd5c /src/cpp
parentee6089d347a104d2cc4e7468796af500b0031e50 (diff)
Consolidate build instructions in INSTALL.md and src/cpp/README.md
Diffstat (limited to 'src/cpp')
-rw-r--r--src/cpp/README.md53
1 files changed, 3 insertions, 50 deletions
diff --git a/src/cpp/README.md b/src/cpp/README.md
index d2896ad96f..ac76bf74ed 100644
--- a/src/cpp/README.md
+++ b/src/cpp/README.md
@@ -3,56 +3,9 @@
This directory contains source code for C++ implementation of gRPC.
-# Pre-requisites
-
-## Linux
-
-```sh
- $ [sudo] apt-get install build-essential autoconf libtool
-```
-
-## Mac OSX
-
-For a Mac system, git is not available by default. You will first need to
-install Xcode from the Mac AppStore and then run the following command from a
-terminal:
-
-```sh
- $ [sudo] xcode-select --install
-```
-
-## Protoc
-
-By default gRPC uses [protocol buffers](https://github.com/google/protobuf),
-you will need the `protoc` compiler to generate stub server and client code.
-
-If you compile gRPC from source, as described below, this also installs the
-`protoc` compiler.
-
-If it hasn't been installed, you can run the following commands to install it.
-
-```sh
-$ cd grpc/third_party/protobuf
-$ sudo make install # 'make' should have been run by core grpc
-```
-
-Alternatively, you can download `protoc` binaries from
-[the protocol buffers Github repository](https://github.com/google/protobuf/releases).
-
-# Installation
-
-Currently to install gRPC for C++, you need to build from source as described
-below.
-
-# Build from Source
-
-```sh
- $ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc
- $ cd grpc
- $ git submodule update --init
- $ make
- $ [sudo] make install
-```
+To install gRPC for C++ on your system, follow the instructions to build from source
+[here](../../INSTALL.md). This also installs the protocol buffer compiler
+`protoc` (if you don't have it already), and the C++ gRPC plugin for `protoc`.
# Documentation