Lines Matching +full:add +full:- +full:apt +full:- +full:repository
1 gRPC C++ - Building from source
4 # Pre-requisites
9 $ [sudo] apt-get install build-essential autoconf libtool pkg-config
14 $ [sudo] apt-get install libgflags-dev libgtest-dev
15 $ [sudo] apt-get install clang libc++-dev
26 $ [sudo] xcode-select --install
53 - Install Visual Studio 2015 or 2017 (Visual C++ compiler will be used).
54 - Install [Git](https://git-scm.com/).
55 - Install [CMake](https://cmake.org/download/).
56 - Install [Active State Perl](https://www.activestate.com/activeperl/) (`choco install activeperl`)…
57 - Install [Go](https://golang.org/dl/) (`choco install golang`) - *required by boringssl*
58 - Install [yasm](http://yasm.tortall.net/) and add it to `PATH` (`choco install yasm`) - *required …
59 - (Optional) Install [Ninja](https://ninja-build.org/) (`choco install ninja`)
68 repository recursively and it detects that you do not already have 'protoc' compiler
78 # Clone the repository (including submodules)
80 Before building, you need to clone the gRPC github repository and download submodules containing so…
81 for gRPC's dependencies (that's done by the `submodule` command or `--recursive` flag). The followi…
82 repository at the latest stable version.
87 $ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc
89 $ git submodule update --init
95 > @rem You can also do just "git clone --recursive -b THE_BRANCH_YOU_WANT https://github.com/grpc/g…
96 > powershell git clone --recursive -b ((New-Object System.Net.WebClient).DownloadString(\"https://g…
98 > @rem To update submodules at later time, run "git submodule update --init"
106 …he [How to use](https://github.com/grpc/grpc/tree/master/src/cpp#to-start-using-grpc-c) instructio…
107 for guidance on how to add gRPC as a dependency to a C++ application (there are several ways and sy…
111 From the grpc repository root
120 From the grpc repository root
132 > @rem Run from grpc directory after cloning the repo with --recursive or updating submodules.
135 > cmake .. -G "Visual Studio 14 2015"
136 > cmake --build . --config Release
143 > @rem Run from grpc directory after cloning the repo with --recursive or updating submodules.
147 > cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release
148 > cmake --build .