From fa82a98b283c9ea44c66281e1795db08809fec7b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 9 Aug 2005 02:11:35 +0000 Subject: need to run STRIPTOOL with -s to replace behavior lost from gcc -s --- utils/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils') diff --git a/utils/Makefile b/utils/Makefile index 6ac53c5d0..177d1b59f 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -44,21 +44,21 @@ readelf.c ldconfig.c ldd.c: headers readelf: readelf.c $(CC) $(CFLAGS) $^ -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ + $(STRIPTOOL) -s -x -R .note -R .comment $@ ldconfig: ldconfig.c $(CC) $(CFLAGS) $(if $(filter $(UCLIBC_STATIC_LDCONFIG),y),-static) \ -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \ -DUCLIBC_LDSO=$(UCLIBC_LDSO) -I. -I../ldso/include \ $^ -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ + $(STRIPTOOL) -s -x -R .note -R .comment $@ ldd: ldd.c $(CC) $(CFLAGS) $(PIEFLAG) \ -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \ -DUCLIBC_LDSO=$(UCLIBC_LDSO) -I. -I../ldso/include \ $^ -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ + $(STRIPTOOL) -s -x -R .note -R .comment $@ iconv: ../libc/misc/wchar/wchar.c $(CC) $(CFLAGS) $(PIEFLAG) -Wl,-s \ -- cgit v1.2.3