summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-09 02:11:35 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-09 02:11:35 +0000
commitfa82a98b283c9ea44c66281e1795db08809fec7b (patch)
treee356a52e4b72bb057bb4d2eec04102a859fbc70b /utils
parentb45363960c02fdda0166f8de63a94aa0a6e6a925 (diff)
need to run STRIPTOOL with -s to replace behavior lost from gcc -s
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile6
1 files changed, 3 insertions, 3 deletions
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 \