Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
11 lines
202 B
11 lines
202 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
EXTENSION_PATH=$1
|
||
|
|
||
|
pushd $EXTENSION_PATH
|
||
|
make clean || true
|
||
|
set -e
|
||
|
# Add following in configure for debug: --enable-debug CFLAGS='-g -O0'
|
||
|
phpize && ./configure CFLAGS='-g -O0' && make
|
||
|
popd
|