Do not strip at link stage
a9eae39e
Building with debug symbols is worthless unless LDFLAGS are manually adjusted as well.
1 file(s) · +1 −1
Building with debug symbols is worthless unless LDFLAGS are manually adjusted as well.
| 25 | 25 | # flags |
|
| 26 | 26 | CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) |
|
| 27 | 27 | CFLAGS = -std=c99 -pedantic -Wall -Os $(INCS) $(CPPFLAGS) |
|
| 28 | - | LDFLAGS = -s $(LIBS) |
|
| 28 | + | LDFLAGS = $(LIBS) |
|
| 29 | 29 | ||
| 30 | 30 | # compiler and linker |
|
| 31 | 31 | CC = cc |