diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 11 |
1 files changed, 9 insertions, 2 deletions
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/' \ |