mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-03 02:11:09 +02:00
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:
parent
e053bd6036
commit
464ff6287f
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue