diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-10 23:20:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-10 23:20:48 +0000 |
commit | c70240cc1d80a9fdf468258f06af315c16d75168 (patch) | |
tree | a8a958f094706e385189bd35c9362353945aaa2b | |
parent | 72d59dbd768f92ad3ce4723b30b490dbe29fbaba (diff) | |
download | busybox-c70240cc1d80a9fdf468258f06af315c16d75168.tar.gz |
add a sep option for stripping
-rw-r--r-- | Config.in | 7 | ||||
-rw-r--r-- | Rules.mak | 5 |
2 files changed, 11 insertions, 1 deletions
@@ -318,6 +318,13 @@ config CONFIG_EFENCE endchoice +config CONFIG_STRIP_BINARIES + bool "Strip busybox objects" + default y if !CONFIG_DEBUG + default n if CONFIG_DEBUG + help + Whether or not we strip the busybox binary and such. + config CONFIG_DEBUG_YANK_SUSv2 bool "Disable obsolete features removed before SUSv3?" default y @@ -238,10 +238,13 @@ endif LDFLAGS+=$(if $(call is_eq,$(CONFIG_DEBUG),y),$(call check_ld,LDFLAGS,--warn-common,)$(call check_ld,LDFLAGS,--sort-common,)) ifeq ($(CONFIG_DEBUG),y) CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE - STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging else CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG +endif +ifeq ($(CONFIG_STRIP_BINARIES),y) STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment +else + STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging endif PROG_CFLAGS+=$(if $(call is_eq,$(CONFIG_STATIC),y),\ $(call check_gcc,PROG_CFLAGS,-static,)) |