From 76eeace78691b0927ec27f159d4a3ff5f00bf8da Mon Sep 17 00:00:00 2001 From: Alexey Kopytov Date: Fri, 29 Sep 2017 23:53:07 +0300 Subject: [PATCH] Build with -O3 instead of -O2 by default. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e913fc7..643409f 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,7 @@ if test "$GCC" = "yes" then CFLAGS="-ggdb3 ${CFLAGS}" DEBUG_CFLAGS="-O0" - OPTIMIZE_CFLAGS="-O2" + OPTIMIZE_CFLAGS="-O3" GCOV_CFLAGS="-O0 --coverage" GCOV_LDFLAGS="-coverage" ASAN_CFLAGS="-fsanitize=address"