commit fd0bb713d77b52dad52e98183bead6cc9b814b30
parent 9477f3b1d11521d015f0117b99235ccf72e99cb8
Author: Aaron Marcher <[email protected]>
Date: Sat, 17 Sep 2016 22:03:56 +0200
added optimization back (removed it for debugging some time ago)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.mk b/config.mk
@@ -11,7 +11,7 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
-CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS}
+CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O2 ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
CC = cc