From ced4624dae15ead098995a151440c1d80d355a44 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 5 Oct 2011 05:12:21 +0000 Subject: enable setting STRIP from the global package-specific Makefile and set STRIP=echo to keep debug symbols svn path=/trunk/; revision=15506 --- packages/linux_make/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'packages/linux_make/Makefile') diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index e6033d6c..d34ca7d6 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -28,6 +28,10 @@ else prefix = /usr/local endif +# to control whether the debug symbols are kept +#STRIP = strip --strip-unneeded -R .note -R .comment +STRIP = echo + OPT_CFLAGS = -g TARGET_PLATFORM := $(shell uname -m) @@ -52,7 +56,8 @@ DEST_PATHS = BUILDLAYOUT_DIR=$(BUILDLAYOUT_DIR) \ DESTDIR=$(DESTDIR) \ prefix=$(prefix) \ OPT_CFLAGS="$(OPT_CFLAGS)" \ - UNAME=$(UNAME) + UNAME=$(UNAME) \ + STRIP=$(STRIP) all: $(MAKE) -C $(packages_src) $(DEST_PATHS) -- cgit v1.2.1