From 92079664eb7e368f2e8cf83fed46152ceb1acb16 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 15 Nov 2012 14:58:04 -0700 Subject: [PATCH] Get rid of -fno-omit-frame-pointer It costs a bit of performance. And it's trivial to re-enable for debug/profiling purposes. Signed-off-by: Jens Axboe --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35897705..84732382 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ endif DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \ $(DEBUGFLAGS) -OPTFLAGS= -O3 -fno-omit-frame-pointer -g $(EXTFLAGS) +OPTFLAGS= -O3 -g $(EXTFLAGS) CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS) LIBS = -lm $(EXTLIBS) PROGS = fio -- 2.25.1