summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-11-16 20:35:25 +0000
committerEric Andersen <andersen@codepoet.org>2000-11-16 20:35:25 +0000
commit350c0215ef0e7cd915c2a2931b548e75d540a686 (patch)
tree97825f27b89cbfb0029c686d305184b8416af6da /Rules.mak
parentaa85deb86c823f2ee9e966c6676a092d774cd493 (diff)
Fix it so files are not stripped when debugging (doh!). Fix up strip
rules. With this fix in place, I can now find what is wrong with malloc... -Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak1
1 files changed, 1 insertions, 0 deletions
diff --git a/Rules.mak b/Rules.mak
index a4e1496c8..600ce5ea8 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -41,6 +41,7 @@ CFLAGS=$(ARCH_CFLAGS) $(CCFLAGS) $(DEFS)
ifeq ($(DODEBUG),true)
CFLAGS += -Wall -g
LDFLAGS = -nostdlib -Wl,-warn-common
+ STRIPTOOL = /bin/true -Since_we_are_debugging
else
CFLAGS += -Wall #-fomit-frame-pointer
LDFLAGS = -s -nostdlib -Wl,-warn-common