From bbd251a07540477c37a48e92da3717e702255113 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 31 Jul 2007 18:06:50 +0000 Subject: - add possibility to select different flavours of strip (or none at all for debugging purposes) --- package/Makefile.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'package/Makefile.in') diff --git a/package/Makefile.in b/package/Makefile.in index 17302527d..071635b58 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -131,9 +131,16 @@ endif TARGET_CC=$(TARGET_CROSS)gcc TARGET_CXX=$(TARGET_CROSS)g++ TARGET_RANLIB=$(TARGET_CROSS)ranlib -STRIP=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note INSTALL=/usr/bin/install - +ifeq ($(BR2_STRIP_strip),y) +STRIP=$(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note +endif +ifeq ($(BR2_STRIP_sstrip),y) +STRIP=$(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-sstrip +endif +ifeq ($(BR2_STRIP_none),y) +STRIP=true -Not_stripping +endif HOST_ARCH:=$(shell $(HOSTCC) -dumpmachine | sed -e s'/-.*//' \ -e 's/sparc.*/sparc/' \ -- cgit v1.2.3