diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-11-16 20:35:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-11-16 20:35:25 +0000 |
commit | 350c0215ef0e7cd915c2a2931b548e75d540a686 (patch) | |
tree | 97825f27b89cbfb0029c686d305184b8416af6da /Rules.mak | |
parent | aa85deb86c823f2ee9e966c6676a092d774cd493 (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.mak | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |