From 464ff6287fa48d0df1cece7865f6fad53f6f8cd5 Mon Sep 17 00:00:00 2001 From: nonetrix <45698918+nonetrix@users.noreply.github.com> Date: Wed, 12 Jan 2022 00:42:25 -0600 Subject: [PATCH] Turn on -O3 -O3 makes faster binaries, I have tested it and used it daily without issues -march=native might also be worth looking at but it might break compatibility if you move your install to another machine Learn more here: https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html --- config.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.mk b/config.mk index 1741840..c277d43 100644 --- a/config.mk +++ b/config.mk @@ -23,9 +23,9 @@ LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender\ `$(PKG_CONFIG) --libs harfbuzz` # flags -STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) -STLDFLAGS = $(LIBS) $(LDFLAGS) +STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -O3 +STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) -O3 +STLDFLAGS = $(LIBS) $(LDFLAGS) -O3 # OpenBSD: #CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE