diff options
author | fesowowako <118536485+fesowowako@users.noreply.github.com> | 2024-03-23 20:10:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 20:10:13 +0200 |
commit | 0485f1eb9c1624d443fbf14992d281336a859dce (patch) | |
tree | 83b84102a7f079fd7b9792fb44322680ae3114aa | |
parent | 0c2fde57f71f0b965aafe8969da719614f53d552 (diff) |
Update config.mk
-rw-r--r-- | config.mk | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,5 @@ # dwm version -VERSION = 6.4 +VERSION = 6.5 # Customize below to fit your system @@ -25,10 +25,15 @@ FREETYPEINC = /usr/include/freetype2 INCS = -I${X11INC} -I${FREETYPEINC} LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lxcb -lxcb-res +# Optional compiler optimisations may create smaller binaries and +# faster code, but increases compile time. +# See https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html +#OPTIMISATIONS = -march=native -flto=auto -O3 + # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} +CFLAGS = ${OPTIMISATIONS} -std=c99 -pedantic -Wall -Wno-unused-function -Wno-deprecated-declarations ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} # Solaris |