Skip to content
Snippets Groups Projects
Commit a00d66e5 authored by Albert Gräf's avatar Albert Gräf Committed by Albert Gräf
Browse files

mingw makefile (pd): don't strip binaries if -g et al are present.

parent d747933b
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,12 @@ ARCH_CFLAGS = -DPD -DPD_INTERNAL -DMSW -DPA_USE_ASIO -DPA_USE_WMME \
CFLAGS += $(ARCH_CFLAGS) $(WARN_CFLAGS) $(OPT_CFLAGS) $(MORECFLAGS)
ifeq ($(filter -g -ggdb, $(CFLAGS)),)
STRIP = strip --strip-unneeded -R .note -R .comment
else
# don't strip, we need the debugging symbols
STRIP = true
endif
# the sources
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment