summaryrefslogtreecommitdiff
path: root/grpc/build_grpc.sh
blob: 190a1ef966426c4892a8f231a6a5a655d994ccf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

grpc_1_36_0_githash=736e3758351ced3cd842bad3ba4e2540f01bbc48

function build_grpc () {
  git clone https://github.com/grpc/grpc.git google/grpc
  cd google/grpc
  git checkout ${grpc_1_36_0_githash}
  git submodule update --init
  # Apply boringssl build patch
  cd third_party/boringssl-with-bazel
  git apply ../../../../grpc/boringssl.patch
  cd ../..
  mkdir ../grpc_build
  cd ../grpc_build
  cmake ../grpc -DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX=`pwd`/../grpc/install
  cmake --build . --target install ${JOBS:+-j$JOBS}
  if [ ! -f ${GRPC_INSTALL_PATH}/lib/libgrpc++_unsecure.so.1 ]; then
    ln -s ${GRPC_INSTALL_PATH}/lib/libgrpc++_unsecure.so.6 ${GRPC_INSTALL_PATH}/lib/libgrpc++_unsecure.so.1
  fi
  cd ../..
}

GRPC_INSTALL_PATH=`pwd`/google/grpc/install
PROTOBUF_DOWNLOAD_PATH=`pwd`/google/grpc/third_party/protobuf

build_grpc