From f00fb5a857722324fa8114a82ce10f58cdb34c24 Mon Sep 17 00:00:00 2001 From: Andreas Buhr Date: Wed, 22 Apr 2020 22:31:39 +0200 Subject: [PATCH] set optimization from -O2 to -O3, 3.4 % performance increase observed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71514357..52ab9469 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC= gcc #CC= clang --analyze -CFLAGS= -g -Wall -Wno-unused-function -O2 +CFLAGS= -g -Wall -Wno-unused-function -O3 WRAP_MALLOC=-DUSE_MALLOC_WRAPPERS AR= ar DFLAGS= -DHAVE_PTHREAD $(WRAP_MALLOC)