diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-21 20:22:14 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2023-01-21 20:22:14 -0500 |
| commit | a9f28ab955995449dd0e094dd12fc2fa480de18b (patch) | |
| tree | 5871781ef187d40d574ddc3ba3c07d9d25cd7109 | |
| parent | 5aeb14afacc9bcfe137d5a9e13521e33bcf4a32e (diff) | |
| download | dwm-a9f28ab955995449dd0e094dd12fc2fa480de18b.tar.gz | |
makefile: bumped optimization level from O2 to O3openbsd
| -rw-r--r-- | config.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lxcb -lxcb-r # flags CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Wno-unused-function -Os ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Wno-unused-function -O3 ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} # Solaris |