Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 1 | These instructions only cover building grpc C and C++ libraries under |
| 2 | typical unix systems. If you need more information, please try grpc's |
| 3 | wiki pages: |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 4 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 5 | https://github.com/google/grpc/wiki |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 6 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 7 | |
| 8 | ************************* |
| 9 | * If you are in a hurry * |
| 10 | ************************* |
| 11 | |
| 12 | A typical unix installation won't require any more steps than running: |
| 13 | |
| 14 | $ make |
| 15 | # make install |
| 16 | |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 17 | You don't need anything else than GNU Make, gcc and autotools. Under a Debian |
| 18 | or Ubuntu system, this should boil down to the following packages: |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 19 | |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 20 | # apt-get install build-essential autoconf libtool |
| 21 | |
| 22 | Building the python wrapper requires the following: |
| 23 | |
| 24 | # apt-get install python-all-dev python-virtualenv |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 25 | |
Nicolas "Pixel" Noble | 522d712 | 2015-02-19 01:28:02 +0100 | [diff] [blame] | 26 | If you want to install in a different directory than the default /usr/lib, you can |
| 27 | override it on the command line: |
| 28 | |
| 29 | # make install prefix=/opt |
| 30 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 31 | |
| 32 | ******************************* |
| 33 | * More detailled instructions * |
| 34 | ******************************* |
| 35 | |
| 36 | Setting up dependencies |
| 37 | ======================= |
| 38 | |
| 39 | Dependencies to compile the libraries |
| 40 | ------------------------------------- |
| 41 | |
| 42 | grpc libraries have few external dependencies. If you need to compile and |
| 43 | install them, they are present in the third_party directory if you have |
| 44 | cloned the github repository recursively. If you didn't clone recursively, |
| 45 | you can still get them later by running the following command: |
| 46 | |
| 47 | $ git submodule update --init |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 48 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 49 | Note that the Makefile makes it much easier for you to compile from sources |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 50 | if you were to clone recursively our git repository: it will automatically |
| 51 | compile zlib and OpenSSL, which are core requirements for grpc. Note this |
| 52 | creates grpc libraries that will have zlib and OpenSSL built-in inside of them, |
| 53 | which significantly increases the libraries' size. |
| 54 | |
| 55 | In order to decrease that size, you can manually install zlib and OpenSSL on |
| 56 | your system, so that the Makefile can use them instead. |
| 57 | |
| 58 | Under a Debian or Ubuntu system, one can acquire the development package |
| 59 | for zlib this way: |
| 60 | |
| 61 | # apt-get install zlib1g-dev |
| 62 | |
| 63 | To the best of our knowledge, no distribution has an OpenSSL package that |
| 64 | supports ALPN yet, so you would still have to depend on installing from source |
| 65 | for that particular dependency if you want to reduce the libraries' size. |
| 66 | |
| 67 | The recommended version of OpenSSL that provides ALPN support is available |
| 68 | at this URL: |
| 69 | |
Nicolas "Pixel" Noble | d566021 | 2015-01-23 20:35:49 +0100 | [diff] [blame] | 70 | https://www.openssl.org/source/openssl-1.0.2.tar.gz |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 71 | |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 72 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 73 | Dependencies to compile and run the tests |
| 74 | ----------------------------------------- |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 75 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 76 | Compiling and running grpc plain-C tests dont't require any more dependency. |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 77 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 78 | |
| 79 | Compiling and running grpc C++ tests depend on protobuf 3.0.0, gtest and |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 80 | gflags. Although gflags is provided in third_party, you will need to manually |
| 81 | install that dependency on your system to run these tests. |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 82 | |
| 83 | Under a Debian or Ubuntu system, you can install the gtests and gflags packages |
| 84 | using apt-get: |
| 85 | |
| 86 | # apt-get install libgflags-dev libgtest-dev |
| 87 | |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 88 | However, protobuf 3.0.0 isn't in a debian package yet, but the Makefile will |
| 89 | automatically try and compile the one present in third_party if you cloned the |
| 90 | repository recursively, and that it detects your system is lacking it. |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 91 | |
| 92 | Compiling and installing protobuf 3.0.0 requires a few more dependencies in |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 93 | itself, notably the autoconf suite. If you have apt-get, you can install |
| 94 | these dependencies this way: |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 95 | |
Nicolas Noble | c70752a | 2015-02-12 17:01:52 -0800 | [diff] [blame] | 96 | # apt-get install autoconf libtool |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 97 | |
Nicolas "Pixel" Noble | d66cba2 | 2015-02-14 02:59:12 +0100 | [diff] [blame] | 98 | If you want to run the tests using one of the sanitized configurations, you |
| 99 | will need clang and its instrumented libc++: |
| 100 | |
| 101 | # apt-get install clang libc++-dev |
| 102 | |
vjpai | 7cc2c30 | 2015-02-18 12:33:37 -0800 | [diff] [blame] | 103 | Mac-specific notes: |
| 104 | ------------------- |
| 105 | |
| 106 | For a Mac system, git is not available by default. You will first need to |
| 107 | install Xcode from the Mac AppStore and then run the following command from a |
| 108 | terminal: |
| 109 | |
| 110 | $ sudo xcode-select --install |
| 111 | |
| 112 | You should also install "port" following the instructions at |
| 113 | https://www.macports.org . This will reside in /opt/local/bin/port for |
| 114 | most Mac installations. Do the "git submodule" command listed above. |
| 115 | |
| 116 | Then execute the following for all the needed build dependencies |
| 117 | |
| 118 | $ sudo /opt/local/bin/port install autoconf automake libtool gflags cmake |
| 119 | $ mkdir ~/gtest |
| 120 | $ svn checkout http://googletest.googlecode.com/svn/trunk/ gtest-svn |
| 121 | $ mkdir mybuild |
| 122 | $ cd mybuild |
| 123 | $ cmake ../gtest-svn |
| 124 | $ make |
| 125 | $ make gtest.a gtest_main.a |
| 126 | $ sudo cp libgtest.a libgtest_main.a /opt/local/lib |
| 127 | $ sudo mkdir /opt/local/include/gtest |
| 128 | $ sudo cp -pr ../gtest-svn/include/gtest /opt/local/include/gtest |
| 129 | |
| 130 | We will also need to make openssl and install it appropriately |
| 131 | |
| 132 | $ cd <git directory> |
| 133 | $ cd third_party/openssl |
| 134 | $ sudo make install |
| 135 | $ cd ../../ |
| 136 | |
| 137 | If you are going to make changes and need to regenerate the projects file, |
| 138 | you will need to install certain modules for python. |
| 139 | |
| 140 | $ sudo easy_install simplejson mako |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 141 | |
| 142 | A word on OpenSSL |
| 143 | ----------------- |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 144 | |
Abhishek Kumar | 3dd9df9 | 2015-02-10 10:16:41 -0800 | [diff] [blame] | 145 | Secure HTTP2 requires the TLS extension ALPN (see rfc 7301 and |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 146 | http://http2.github.io/http2-spec/ section 3.3). Our HTTP2 implementation |
Nicolas "Pixel" Noble | d566021 | 2015-01-23 20:35:49 +0100 | [diff] [blame] | 147 | relies on OpenSSL's implementation. OpenSSL 1.0.2 is the first released version |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 148 | of OpenSSL that has ALPN support, and this explains our dependency on it. |
| 149 | |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 150 | Note that the Makefile supports compiling only the unsecure elements of grpc, |
| 151 | and if you do not have OpenSSL and do not want it, you can still proceed |
Abhishek Kumar | 6749e73 | 2015-02-10 10:59:52 -0800 | [diff] [blame] | 152 | with installing only the elements you require. However, we strongly recommend |
Abhishek Kumar | 3dd9df9 | 2015-02-10 10:16:41 -0800 | [diff] [blame] | 153 | the use of encryption for all network traffic, and discourage the use of grpc |
| 154 | without TLS. |
nnoble | 69ac39f | 2014-12-12 15:43:38 -0800 | [diff] [blame] | 155 | |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 156 | |
| 157 | Compiling |
| 158 | ========= |
| 159 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 160 | If you have all the dependencies mentioned above, you should simply be able |
| 161 | to go ahead and run "make" to compile grpc's C and C++ libraries: |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 162 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 163 | $ make |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 164 | |
| 165 | |
| 166 | Testing |
| 167 | ======= |
| 168 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 169 | To build and run the tests, you can run the command: |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 170 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 171 | $ make test |
| 172 | |
| 173 | If you want to be able to run them in parallel, and get better output, you can |
| 174 | also use the python tool we have written: |
| 175 | |
| 176 | $ ./tools/run_tests/run_tests.py |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 177 | |
| 178 | |
| 179 | Installing |
| 180 | ========== |
| 181 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 182 | Once everything is compiled, you should be able to install grpc C and C++ |
nnoble | 0005b77 | 2014-12-10 16:25:34 -0800 | [diff] [blame] | 183 | libraries and headers: |
| 184 | |
Nicolas Noble | 6ae8ef1 | 2015-01-16 15:03:42 -0800 | [diff] [blame] | 185 | # make install |