merge r4007 (optimisation flag fix.)

Originally committed to SVN as r4023.
This commit is contained in:
Amar Takhar 2010-01-21 00:30:42 +00:00
parent 73ab47f8ec
commit 113ae0cd6d
1 changed files with 7 additions and 3 deletions

View File

@ -277,10 +277,14 @@ if test "$enable_compiler_flags" != "no"; then
AC_CXX_FLAG([-pipe])
# -O* messes with debugging.
if test "$enable_debug" != "yes"; then
AC_C_FLAG([-O2])
AC_CXX_FLAG([-O2])
if test "$enable_debug" = "yes"; then
opt_flag="-O0"
else
opt_flag="-O2"
fi
AC_C_FLAG([$opt_flag])
AC_CXX_FLAG([$opt_flag])
fi