dwm

dynamic window manager

git clone https://9o.is/git/dwm.git

commit 57a28ea8007a3f2a44beed6abedcd00b4a6e2841
parent b3d6be342fc335e8bcad06330c011296969e3f5b
Author: Klemens Nanni <kn@openbsd.org>
Date:   Sat,  2 Jun 2018 15:12:42 +0200

Do not strip at link stage

Building with debug symbols is worthless unless LDFLAGS are manually
adjusted as well.

Diffstat:
Mconfig.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -28,7 +28,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} #CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -s ${LIBS} +LDFLAGS = ${LIBS} # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"