Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
protobuf
/
php
/
tests
/
compile_extension.sh
blob: bbd669684c8eb7a448f633a75c355201883f489b [
file
] [
log
] [
blame
]
#!/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