diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-12-16 09:20:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-12-16 09:20:08 +0000 |
commit | de2a342289525cc4a58659a47d013725e9824470 (patch) | |
tree | 08d8db74be08cb84fb7ccd710e4ca3e596028b63 | |
parent | e62dc86bc770f5c7c59327ec59ef04af9d9904e2 (diff) | |
download | busybox-de2a342289525cc4a58659a47d013725e9824470.tar.gz |
Add a more verbose non-strip command.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,7 +113,7 @@ OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null \ >/dev/null 2>&1; then echo "-Os"; else echo "-O2" ; fi} GCC_STACK_BOUNDRY := ${shell if $(CC) -mpreferred-stack-boundary=2 -S -o /dev/null -xc /dev/null \ >/dev/null 2>&1; then echo "-mpreferred-stack-boundary=2"; else echo "" ; fi} -OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer $(GCC_STACK_BOUNDRY) +OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer $(GCC_STACK_BOUNDRY) #-fstrict-aliasing -march=i386 -mcpu=i386 -malign-functions=0 -malign-jumps=0 WARNINGS=-Wall -Wstrict-prototypes -Wshadow CFLAGS = -I$(TOPDIR)/include ARFLAGS = -r @@ -147,7 +147,7 @@ endif ifeq ($(strip $(DODEBUG)),true) CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE LDFLAGS += -Wl,-warn-common - STRIPCMD = + STRIPCMD = /bin/true -Not_stripping_since_we_are_debugging else CFLAGS += $(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE LDFLAGS += -s -Wl,-warn-common |