diff options
author | Miles Bader <miles@lsi.nec.co.jp> | 2002-11-07 04:58:27 +0000 |
---|---|---|
committer | Miles Bader <miles@lsi.nec.co.jp> | 2002-11-07 04:58:27 +0000 |
commit | 0dd725557f004c33c6eb86990d5c16d2153e367c (patch) | |
tree | a97610626b184621ebddb2adb92be47a0559f00d /Rules.mak | |
parent | a6663f2b90a7124c1fbe2644dc082aecf1f24def (diff) |
* Make -DNDEBUG depend on DOASSERTS, not DODEBUG
* Make -msoft-float depend on USE_GCC_SOFT_FLOAT_OPTION, not
UCLIBC_HAS_SOFT_FLOAT.
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -153,9 +153,11 @@ ifeq ($(strip $(DODEBUG)),y) LDFLAGS:= -shared --warn-common --warn-once -z combreloc STRIPTOOL:= true -Since_we_are_debugging else - CFLAGS += -DNDEBUG #-fomit-frame-pointer LDFLAGS := -s -shared --warn-common --warn-once -z combreloc endif +ifneq ($(strip $(DOASSERTS)),y) + CFLAGS += -DNDEBUG +endif ifeq ($(strip $(HAVE_SHARED)),y) LIBRARY_CACHE:=#-DUSE_CACHE @@ -172,7 +174,7 @@ endif ifeq ($(strip $(DOPIC)),y) CFLAGS += -fPIC endif -ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y) +ifeq ($(strip $(USE_GCC_SOFT_FLOAT_OPTION)),y) CFLAGS += -msoft-float endif |