Explicitly define -DNDEBUG so asserts don't clutter release code

This commit is contained in:
Eric Andersen 2003-03-07 17:27:51 +00:00
parent 08f4a4c508
commit bae7c1ac24

View File

@ -35,6 +35,7 @@ BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
# by asking the CC compiler what arch it compiles things for, so unless # by asking the CC compiler what arch it compiles things for, so unless
# your compiler is broken, you should not need to specify TARGET_ARCH # your compiler is broken, you should not need to specify TARGET_ARCH
CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX))) CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
#CROSS =/usr/i386-linux-uclibc/bin/i386-uclibc-
CC = $(CROSS)gcc CC = $(CROSS)gcc
AR = $(CROSS)ar AR = $(CROSS)ar
AS = $(CROSS)as AS = $(CROSS)as
@ -161,7 +162,7 @@ ifeq ($(strip $(DODEBUG)),y)
LDFLAGS +=-Wl,-warn-common LDFLAGS +=-Wl,-warn-common
STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
else else
CFLAGS += $(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
LDFLAGS += -s -Wl,-warn-common LDFLAGS += -s -Wl,-warn-common
STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment
endif endif