Add compile -O flag only for non-debug mode, per Tom
This commit is contained in:
parent
d18ba3f452
commit
fca71f4406
5
configure
vendored
5
configure
vendored
@ -2393,12 +2393,13 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||||||
if test "$ac_env_CFLAGS_set" = set; then
|
if test "$ac_env_CFLAGS_set" = set; then
|
||||||
CFLAGS=$ac_env_CFLAGS_value
|
CFLAGS=$ac_env_CFLAGS_value
|
||||||
fi
|
fi
|
||||||
|
if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
|
||||||
|
CFLAGS="$CFLAGS -g"
|
||||||
|
else
|
||||||
# configure sets CFLAGS to -O2 for gcc, so this is only for non-gcc
|
# configure sets CFLAGS to -O2 for gcc, so this is only for non-gcc
|
||||||
if test x"$CFLAGS" = x""; then
|
if test x"$CFLAGS" = x""; then
|
||||||
CFLAGS="-O"
|
CFLAGS="-O"
|
||||||
fi
|
fi
|
||||||
if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
|
|
||||||
CFLAGS="$CFLAGS -g"
|
|
||||||
fi
|
fi
|
||||||
{ echo "$as_me:$LINENO: using CFLAGS=$CFLAGS" >&5
|
{ echo "$as_me:$LINENO: using CFLAGS=$CFLAGS" >&5
|
||||||
echo "$as_me: using CFLAGS=$CFLAGS" >&6;}
|
echo "$as_me: using CFLAGS=$CFLAGS" >&6;}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl $Header: /cvsroot/pgsql/configure.in,v 1.294 2003/10/09 03:20:33 momjian Exp $
|
dnl $Header: /cvsroot/pgsql/configure.in,v 1.295 2003/10/14 00:48:09 momjian Exp $
|
||||||
dnl
|
dnl
|
||||||
dnl Developers, please strive to achieve this order:
|
dnl Developers, please strive to achieve this order:
|
||||||
dnl
|
dnl
|
||||||
@ -238,12 +238,13 @@ AC_PROG_CC([$pgac_cc_list])
|
|||||||
if test "$ac_env_CFLAGS_set" = set; then
|
if test "$ac_env_CFLAGS_set" = set; then
|
||||||
CFLAGS=$ac_env_CFLAGS_value
|
CFLAGS=$ac_env_CFLAGS_value
|
||||||
fi
|
fi
|
||||||
|
if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
|
||||||
|
CFLAGS="$CFLAGS -g"
|
||||||
|
else
|
||||||
# configure sets CFLAGS to -O2 for gcc, so this is only for non-gcc
|
# configure sets CFLAGS to -O2 for gcc, so this is only for non-gcc
|
||||||
if test x"$CFLAGS" = x""; then
|
if test x"$CFLAGS" = x""; then
|
||||||
CFLAGS="-O"
|
CFLAGS="-O"
|
||||||
fi
|
fi
|
||||||
if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
|
|
||||||
CFLAGS="$CFLAGS -g"
|
|
||||||
fi
|
fi
|
||||||
AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
|
AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user