tony2001 Tue, 01 Sep 2009 15:13:02 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=287945
Log: add -g along with -O0 Changed paths: U php/php-src/branches/PHP_5_3/configure.in U php/php-src/trunk/configure.in Modified: php/php-src/branches/PHP_5_3/configure.in =================================================================== --- php/php-src/branches/PHP_5_3/configure.in 2009-09-01 14:44:08 UTC (rev 287944) +++ php/php-src/branches/PHP_5_3/configure.in 2009-09-01 15:13:02 UTC (rev 287945) @@ -779,8 +779,8 @@ changequote([,]) dnl add -O0 only if GCC or ICC is used if test "$GCC" = "yes" || test "$ICC" = "yes"; then - CFLAGS="$CFLAGS -O0" - CXXFLAGS="$CXXFLAGS -O0" + CFLAGS="$CFLAGS -g -O0" + CXXFLAGS="$CXXFLAGS -g -O0" fi if test "$SUNCC" = "yes"; then if test -n "$auto_cflags"; then Modified: php/php-src/trunk/configure.in =================================================================== --- php/php-src/trunk/configure.in 2009-09-01 14:44:08 UTC (rev 287944) +++ php/php-src/trunk/configure.in 2009-09-01 15:13:02 UTC (rev 287945) @@ -779,8 +779,8 @@ changequote([,]) dnl add -O0 only if GCC or ICC is used if test "$GCC" = "yes" || test "$ICC" = "yes"; then - CFLAGS="$CFLAGS -O0" - CXXFLAGS="$CXXFLAGS -O0" + CFLAGS="$CFLAGS -g -O0" + CXXFLAGS="$CXXFLAGS -g -O0" fi if test "$SUNCC" = "yes"; then if test -n "$auto_cflags"; then
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php