blob: 6841656bdb8d3734c2724438aaf5606f5ef0ce2e [file] [log] [blame]
#!/bin/bash
set -ex
# change to grpc repo root
cd $(dirname $0)/../..
root=`pwd`
export GRPC_LIB_SUBDIR=libs/opt
# make the libraries
make -j static_c
# build php
cd src/php
cd ext/grpc
phpize
./configure --enable-grpc=$root
make