diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-31 18:06:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-31 18:06:50 +0000 |
commit | bbd251a07540477c37a48e92da3717e702255113 (patch) | |
tree | 1a8bb94b9d7630430201020a4ed8422dbb55c860 /package | |
parent | dd8226a46dcb79079f191e1a88658269e7f6ceb5 (diff) | |
download | buildroot-novena-bbd251a07540477c37a48e92da3717e702255113.tar.gz buildroot-novena-bbd251a07540477c37a48e92da3717e702255113.zip |
- add possibility to select different flavours of strip (or none at all for debugging purposes)
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/' \ |