Default to O3 rather than O2

This commit is contained in:
Thomas Goyne 2012-11-10 19:32:41 -08:00
parent 692ef37b8f
commit 1375da556f
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,8 @@ AS_IF([test x$enable_compiler_flags != xno], [
AC_C_FLAG([-O0])
AC_CXX_FLAG([-O0])
], [
AC_C_FLAG([-O2])
AC_CXX_FLAG([-O2])
AC_C_FLAG([-O3])
AC_CXX_FLAG([-O3])
])
])