2015-08-14 23:49:56 +08:00
|
|
|
Building gRPC-Java
|
|
|
|
==================
|
|
|
|
|
2018-12-07 05:17:59 +08:00
|
|
|
Building is only necessary if you are making changes to gRPC-Java or testing/using a non-released
|
|
|
|
version (e.g. master HEAD) of gRPC-Java library.
|
2015-08-14 23:49:56 +08:00
|
|
|
|
|
|
|
Building requires JDK 8, as our tests use TLS.
|
|
|
|
|
|
|
|
grpc-java has a C++ code generation plugin for protoc. Since many Java
|
2018-12-07 05:17:59 +08:00
|
|
|
developers don't have C compilers installed and don't need to run or modify the
|
2015-08-14 23:49:56 +08:00
|
|
|
codegen, the build can skip it. To skip, create the file
|
|
|
|
`<project-root>/gradle.properties` and add `skipCodegen=true`.
|
|
|
|
|
|
|
|
Then, to build, run:
|
|
|
|
```
|
|
|
|
$ ./gradlew build
|
|
|
|
```
|
|
|
|
|
|
|
|
To install the artifacts to your Maven local repository for use in your own
|
|
|
|
project, run:
|
|
|
|
```
|
2019-02-01 09:38:43 +08:00
|
|
|
$ ./gradlew publishToMavenLocal
|
2015-08-14 23:49:56 +08:00
|
|
|
```
|
|
|
|
|
2018-01-12 05:58:03 +08:00
|
|
|
### Notes for IntelliJ
|
|
|
|
Building in IntelliJ works best when you import the project as a Gradle project and delegate IDE
|
|
|
|
build/run actions to Gradle.
|
|
|
|
|
|
|
|
You can find this setting at:
|
|
|
|
```Settings -> Build, Execution, Deployment
|
|
|
|
-> Build Tools -> Gradle -> Runner
|
|
|
|
-> Delegate IDE build/run actions to gradle.
|
|
|
|
```
|
|
|
|
|
2015-08-14 23:49:56 +08:00
|
|
|
How to Build Code Generation Plugin
|
|
|
|
-----------------------------------
|
|
|
|
This section is only necessary if you are making changes to the code
|
|
|
|
generation. Most users only need to use `skipCodegen=true` as discussed above.
|
|
|
|
|
|
|
|
### Build Protobuf
|
2016-09-28 08:15:12 +08:00
|
|
|
The codegen plugin is C++ code and requires protobuf 3.0.0 or later.
|
2015-08-14 23:49:56 +08:00
|
|
|
|
|
|
|
For Linux, Mac and MinGW:
|
|
|
|
```
|
|
|
|
$ git clone https://github.com/google/protobuf.git
|
|
|
|
$ cd protobuf
|
2019-03-12 05:39:50 +08:00
|
|
|
$ git checkout v3.7.0
|
2015-08-14 23:49:56 +08:00
|
|
|
$ ./autogen.sh
|
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
$ make check
|
|
|
|
$ sudo make install
|
|
|
|
```
|
|
|
|
|
|
|
|
If you are comfortable with C++ compilation and autotools, you can specify a
|
|
|
|
``--prefix`` for Protobuf and use ``-I`` in ``CXXFLAGS``, ``-L`` in
|
|
|
|
``LDFLAGS``, ``LD_LIBRARY_PATH``, and ``PATH`` to reference it. The
|
|
|
|
environment variables will be used when building grpc-java.
|
|
|
|
|
|
|
|
Protobuf installs to ``/usr/local`` by default.
|
|
|
|
|
2015-09-25 06:27:26 +08:00
|
|
|
For Visual C++, please refer to the [Protobuf README](https://github.com/google/protobuf/blob/master/cmake/README.md)
|
|
|
|
for how to compile Protobuf. gRPC-java assumes a Release build.
|
2015-08-14 23:49:56 +08:00
|
|
|
|
|
|
|
#### Linux and MinGW
|
|
|
|
If ``/usr/local/lib`` is not in your library search path, you can add it by running:
|
|
|
|
```
|
|
|
|
$ sudo sh -c 'echo /usr/local/lib >> /etc/ld.so.conf'
|
|
|
|
$ sudo ldconfig
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Mac
|
|
|
|
Some versions of Mac OS X (e.g., 10.10) doesn't have ``/usr/local`` in the
|
|
|
|
default search paths for header files and libraries. It will fail the build of
|
|
|
|
the codegen. To work around this, you will need to set environment variables:
|
|
|
|
```
|
|
|
|
$ export CXXFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Notes for Visual C++
|
|
|
|
|
|
|
|
When building on Windows and VC++, you need to specify project properties for
|
|
|
|
Gradle to find protobuf:
|
|
|
|
```
|
2019-02-01 09:38:43 +08:00
|
|
|
.\gradlew publishToMavenLocal ^
|
2019-03-12 05:39:50 +08:00
|
|
|
-PvcProtobufInclude=C:\path\to\protobuf-3.7.0\src ^
|
|
|
|
-PvcProtobufLibs=C:\path\to\protobuf-3.7.0\vsprojects\Release ^
|
2015-09-25 06:27:26 +08:00
|
|
|
-PtargetArch=x86_32
|
2015-08-14 23:49:56 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Since specifying those properties every build is bothersome, you can instead
|
|
|
|
create ``<project-root>\gradle.properties`` with contents like:
|
|
|
|
```
|
2019-03-12 05:39:50 +08:00
|
|
|
vcProtobufInclude=C:\\path\\to\\protobuf-3.7.0\\src
|
|
|
|
vcProtobufLibs=C:\\path\\to\\protobuf-3.7.0\\vsprojects\\Release
|
2015-09-25 06:27:26 +08:00
|
|
|
targetArch=x86_32
|
2015-08-14 23:49:56 +08:00
|
|
|
```
|
|
|
|
|
2015-09-25 06:27:26 +08:00
|
|
|
By default, the build script will build the codegen for the same architecture as
|
|
|
|
the Java runtime installed on your system. If you are using 64-bit JVM, the
|
|
|
|
codegen will be compiled for 64-bit. Since Protobuf is only built for 32-bit by
|
|
|
|
default, the `targetArch=x86_32` is necessary.
|
2015-08-14 23:49:56 +08:00
|
|
|
|
|
|
|
### Notes for MinGW on Windows
|
|
|
|
If you have both MinGW and VC++ installed on Windows, VC++ will be used by
|
|
|
|
default. To override this default and use MinGW, add ``-PvcDisable=true``
|
|
|
|
to your Gradle command line or add ``vcDisable=true`` to your
|
|
|
|
``<project-root>\gradle.properties``.
|
|
|
|
|
|
|
|
### Notes for Unsupported Operating Systems
|
|
|
|
The build script pulls pre-compiled ``protoc`` from Maven Central by default.
|
|
|
|
We have built ``protoc`` binaries for popular systems, but they may not work
|
|
|
|
for your system. If ``protoc`` cannot be downloaded or would not run, you can
|
|
|
|
use the one that has been built by your own, by adding this property to
|
|
|
|
``<project-root>/gradle.properties``:
|
|
|
|
```
|
|
|
|
protoc=/path/to/protoc
|
|
|
|
```
|