diff options
author | zachir <zachir@librem.one> | 2022-01-26 23:59:13 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-01-26 23:59:13 -0600 |
commit | 17cfc2777086ca4e9c4d75c8e9d90e39c6742977 (patch) | |
tree | 9b93963493bbe807c048a2f6b6f8e24391e29190 /config.mk | |
parent | 1fb05957ed1454c6aa97d862f3cafc5721d7e473 (diff) |
better optimization for performance
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) -lm # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) -CFLAGS = -std=c99 -pedantic -Wall -Os $(INCS) $(CPPFLAGS) +CFLAGS = -std=c99 -pedantic -Wall -O3 -march=native $(INCS) $(CPPFLAGS) LDFLAGS = $(LIBS) # compiler and linker |