From 543d67b647f7edc458d6748d9a80d1399ed95be8 Mon Sep 17 00:00:00 2001 From: yenatch Date: Sun, 24 Sep 2017 15:08:44 -0400 Subject: [PATCH] Build tools with -O3. This improves build time by about 20%. --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index a4f691074..36c643d41 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,7 +1,7 @@ .PHONY: all clean CC := gcc -CFLAGS := -std=c99 -Wall -Wextra +CFLAGS := -O3 -std=c99 -Wall -Wextra tools := \ lzcomp \