Do not strip at link stage - dmenu - dynamic menu | |
git clone git://git.suckless.org/dmenu | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit a9eae39e934d8dab7f1772570efb5f25825bfe01 | |
parent 851b73d178c8d7665c6d8a0bc34dbd4f9d1aa77b | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 2 Jun 2018 17:01:24 +0200 | |
Do not strip at link stage | |
Building with debug symbols is worthless unless LDFLAGS are manually adjusted | |
as well. | |
Diffstat: | |
M config.mk | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.mk b/config.mk | |
@@ -25,7 +25,7 @@ LIBS = -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) | |
# flags | |
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOUR… | |
CFLAGS = -std=c99 -pedantic -Wall -Os $(INCS) $(CPPFLAGS) | |
-LDFLAGS = -s $(LIBS) | |
+LDFLAGS = $(LIBS) | |
# compiler and linker | |
CC = cc |