summaryrefslogtreecommitdiffhomepage
path: root/build.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-04-11 03:20:45 +0900
committernsfisis <nsfisis@gmail.com>2026-04-11 03:20:45 +0900
commitbe2211a6fb78375cec9a5d2615dafaf043e5e848 (patch)
tree1047c4a27e7e69b1692c00d08196a2d889c7132d /build.sh
parentb3b5a0b29ddd627b7cb5f2cce3332f08c412bcdd (diff)
downloadmini-xdebug-be2211a6fb78375cec9a5d2615dafaf043e5e848.tar.gz
mini-xdebug-be2211a6fb78375cec9a5d2615dafaf043e5e848.tar.zst
mini-xdebug-be2211a6fb78375cec9a5d2615dafaf043e5e848.zip
add filesHEADmain
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.sh b/build.sh
new file mode 100644
index 0000000..e1f9d50
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+PHP_PREFIX="${PHP_PREFIX:-/usr/local}"
+cd "$(dirname "$0")" && \
+ "$PHP_PREFIX/bin/phpize" && \
+ ./configure --with-php-config="$PHP_PREFIX/bin/php-config" --enable-mini-xdebug && \
+ make