diff options
author | Anselm R Garbe <anselm@garbe.us> | 2009-07-09 20:49:48 +0100 |
---|---|---|
committer | Anselm R Garbe <anselm@garbe.us> | 2009-07-09 20:49:48 +0100 |
commit | 8420fb1cedf067ce230d5d69e5d4edb3031745e7 (patch) | |
tree | e586b7325b4502d608f194c565e0557bf0a63640 /config.mk | |
parent | f6128a16f9f32f8d2498c4f978b82f94da0e24d8 (diff) |
reverting to optimised compiler options, current state seems stable
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,10 +20,10 @@ LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS} # flags CPPFLAGS = -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -g ${LIBS} -#LDFLAGS = -s ${LIBS} +#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +#LDFLAGS = -g ${LIBS} +LDFLAGS = -s ${LIBS} # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" |