Skip to content

Commit 87acbd2

Browse files
author
Jani Taskinen
committed
MFH:- Detect whether debugging was enabled in PHP and drop optimizing flags if so (merge from configure.in)
1 parent f92026e commit 87acbd2

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

scripts/phpize.m4

+35
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ abs_srcdir=`(cd $srcdir && pwd)`
2121
abs_builddir=`pwd`
2222

2323
AC_PROG_CC
24+
PHP_DETECT_ICC
2425
AC_PROG_CC_C_O
2526

2627
dnl Support systems with system libraries in e.g. /usr/lib64
@@ -58,6 +59,40 @@ AC_MSG_RESULT([$EXTENSION_DIR])
5859
AC_MSG_CHECKING([for PHP installed headers prefix])
5960
AC_MSG_RESULT([$phpincludedir])
6061

62+
dnl Check for PHP_DEBUG / ZEND_DEBUG
63+
AC_MSG_CHECKING([if debug is enabled])
64+
old_CPPFLAGS=$CPPFLAGS
65+
CPPFLAGS="-I$phpincludedir"
66+
AC_EGREP_CPP(php_debug_is_enabled,[
67+
#include <main/php_config.h>
68+
#if ZEND_DEBUG
69+
php_debug_is_enabled
70+
#endif
71+
],[
72+
PHP_DEBUG=yes
73+
],[
74+
PHP_DEBUG=no
75+
])
76+
CPPFLAGS=$old_CPPFLAGS
77+
AC_MSG_RESULT([$PHP_DEBUG])
78+
79+
if test "$PHP_DEBUG" = "yes"; then
80+
PHP_DEBUG=1
81+
ZEND_DEBUG=yes
82+
changequote({,})
83+
CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9s]*//g'`
84+
CXXFLAGS=`echo "$CXXFLAGS" | $SED -e 's/-O[0-9s]*//g'`
85+
changequote([,])
86+
dnl add -O0 only if GCC or ICC is used
87+
if test "$GCC" = "yes" || test "$ICC" = "yes"; then
88+
CFLAGS="$CFLAGS -O0"
89+
CXXFLAGS="$CXXFLAGS -O0"
90+
fi
91+
else
92+
PHP_DEBUG=0
93+
ZEND_DEBUG=no
94+
fi
95+
6196
dnl Always shared
6297
PHP_BUILD_SHARED
6398

0 commit comments

Comments
 (0)