diff options
author | Mike Frysinger | 2007-06-19 15:58:02 +0000 |
---|---|---|
committer | Mike Frysinger | 2007-06-19 15:58:02 +0000 |
commit | 5b5bcf24f5293f7f3db0aca9af98777a5aff6be2 (patch) | |
tree | 88d6cf678bcb1f56e3aba070df52091d733eb122 | |
parent | 31789a81d5751acaaf373e8ede2932208161f869 (diff) | |
download | busybox-5b5bcf24f5293f7f3db0aca9af98777a5aff6be2.zip busybox-5b5bcf24f5293f7f3db0aca9af98777a5aff6be2.tar.gz |
punt %.bflt target in favor of proper LDFLAGS=-Wl,-elf2flt handling
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | Makefile.custom | 3 | ||||
-rw-r--r-- | Makefile.flags | 9 |
3 files changed, 12 insertions, 4 deletions
@@ -677,8 +677,12 @@ busybox_unstripped: $(busybox-all) FORCE $(Q)rm -f .old_version busybox: busybox_unstripped +ifeq ($(SKIP_STRIP),y) + $(Q)cp $< $@ +else $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ busybox_unstripped -o $@ +endif # The actual objects are generated when descending, # make sure no implicit rule kicks in diff --git a/Makefile.custom b/Makefile.custom index cf3d143..bb59776 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -2,9 +2,6 @@ # Build system # ========================================================================== -%.bflt: %_unstripped - $(CROSS_COMPILE)elf2flt $(ELF2FLTFLAGS) $< -o $@ - busybox.links: $(srctree)/applets/busybox.mkll $(objtree)/include/autoconf.h $(srctree)/include/applets.h $(Q)-$(SHELL) $^ >$@ diff --git a/Makefile.flags b/Makefile.flags index 322e437..c9b713b 100644 --- a/Makefile.flags +++ b/Makefile.flags @@ -3,6 +3,7 @@ # ========================================================================== BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) +SKIP_STRIP = n # -std=gnu99 needed for [U]LLONG_MAX on some systems CPPFLAGS += $(call cc-option,-std=gnu99,) @@ -69,6 +70,12 @@ endif #LDFLAGS += -nostdlib +LDFLAGS_ELF2FLT = -Wl,-elf2flt +ifneq (,$(findstring $(LDFLAGS_ELF2FLT),$(LDFLAGS))) +SKIP_STRIP = y +endif + # Busybox is a stack-fatty so make sure we increase default size -# (TODO: use "make stksizes" to find & fix big stack users) +# TODO: use "make stksizes" to find & fix big stack users; should +# just steal scripts/checkstack.pl from the kernel ... FLTFLAGS += -s 20000 |