From e1b42ab9469856113a297fcc4d0771ee99874440 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Thu, 15 Oct 2020 10:58:11 -0700 Subject: [PATCH] Disable assertions for release build. --- php/tests/compile_extension.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/tests/compile_extension.sh b/php/tests/compile_extension.sh index d6dcabcbbb..daa6b17809 100755 --- a/php/tests/compile_extension.sh +++ b/php/tests/compile_extension.sh @@ -10,7 +10,7 @@ rm -f configure.in configure.ac php make-preload.php phpize if [ "$1" = "--release" ]; then - ./configure --with-php-config=$(which php-config) + ./configure --with-php-config=$(which php-config) CFLAGS="-DNDEBUG" else # To get debugging symbols in PHP itself, build PHP with: # $ ./configure --enable-debug CFLAGS='-g -O0'