Skip to content

Commit

Permalink
tools/Makefile: use -Ofast by default
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MartinPulec committed Sep 26, 2024
1 parent 8cbc4af commit 5c311ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FLAGS ?= -O2 -g
FLAGS ?= -Ofast -g
SRCDIR ?= ..
COMMON_FLAGS = $(FLAGS) -D_GNU_SOURCE -I$(SRCDIR)/src/
MKDIR_P = mkdir -p
Expand Down

0 comments on commit 5c311ce

Please sign in to comment.