|
@@ -153,9 +153,11 @@ ifeq ($(strip $(DODEBUG)),y)
|
|
LDFLAGS:= -shared --warn-common --warn-once -z combreloc
|
|
LDFLAGS:= -shared --warn-common --warn-once -z combreloc
|
|
STRIPTOOL:= true -Since_we_are_debugging
|
|
STRIPTOOL:= true -Since_we_are_debugging
|
|
else
|
|
else
|
|
- CFLAGS += -DNDEBUG #-fomit-frame-pointer
|
|
|
|
LDFLAGS := -s -shared --warn-common --warn-once -z combreloc
|
|
LDFLAGS := -s -shared --warn-common --warn-once -z combreloc
|
|
endif
|
|
endif
|
|
|
|
+ifneq ($(strip $(DOASSERTS)),y)
|
|
|
|
+ CFLAGS += -DNDEBUG
|
|
|
|
+endif
|
|
|
|
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
|
LIBRARY_CACHE:=#-DUSE_CACHE
|
|
LIBRARY_CACHE:=#-DUSE_CACHE
|
|
@@ -172,7 +174,7 @@ endif
|
|
ifeq ($(strip $(DOPIC)),y)
|
|
ifeq ($(strip $(DOPIC)),y)
|
|
CFLAGS += -fPIC
|
|
CFLAGS += -fPIC
|
|
endif
|
|
endif
|
|
-ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y)
|
|
+ifeq ($(strip $(USE_GCC_SOFT_FLOAT_OPTION)),y)
|
|
CFLAGS += -msoft-float
|
|
CFLAGS += -msoft-float
|
|
endif
|
|
endif
|
|
|
|
|