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
This commit is contained in:
nonetrix 2022-01-12 00:42:25 -06:00 committed by GitHub
parent e053bd6036
commit 464ff6287f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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