From 5c311cebd1f88ce41c490446e37e16bda0159886 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 26 Sep 2024 14:02:24 +0200 Subject: [PATCH] tools/Makefile: use -Ofast by default For the benchmark, we use -Ofast in UltraGrid so make it the same. It won't break anything for the rest of the objects so make it default instead of writing a custom rule for pixfmt_conv.o. --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 8ead015a5..5ce8ee0e3 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,4 +1,4 @@ -FLAGS ?= -O2 -g +FLAGS ?= -Ofast -g SRCDIR ?= .. COMMON_FLAGS = $(FLAGS) -D_GNU_SOURCE -I$(SRCDIR)/src/ MKDIR_P = mkdir -p