[uClibc-cvs] svn commit: trunk/uClibc/utils

vapier at uclibc.org vapier at uclibc.org
Tue Aug 9 02:11:36 UTC 2005


Author: vapier
Date: 2005-08-08 20:11:35 -0600 (Mon, 08 Aug 2005)
New Revision: 11064

Log:
need to run STRIPTOOL with -s to replace behavior lost from gcc -s

Modified:
   trunk/uClibc/utils/Makefile


Changeset:
Modified: trunk/uClibc/utils/Makefile
===================================================================
--- trunk/uClibc/utils/Makefile	2005-08-08 22:01:53 UTC (rev 11063)
+++ trunk/uClibc/utils/Makefile	2005-08-09 02:11:35 UTC (rev 11064)
@@ -44,21 +44,21 @@
 
 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 \




More information about the uClibc-cvs mailing list