diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-11 16:55:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-11 16:55:38 +0000 |
commit | f1429771e1b4d6a42fd06a315e1509d4a2e94e33 (patch) | |
tree | b94e5a4901805aecb8b8d996286c98db6a8fdb7a /ldso/util/Makefile | |
parent | 19c380d17f328c78b34171259c11cf601a80dbf7 (diff) |
Don't use target strip on native binary
Diffstat (limited to 'ldso/util/Makefile')
-rw-r--r-- | ldso/util/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ldso/util/Makefile b/ldso/util/Makefile index c6b3e9df0..3814bfd2b 100644 --- a/ldso/util/Makefile +++ b/ldso/util/Makefile @@ -57,12 +57,11 @@ ldd: ldd.c $(STRIPTOOL) -x -R .note -R .comment $@ ldd.uclibc: ldd.c - $(NATIVE_CC) $(NATIVE_CFLAGS) -g -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \ + $(NATIVE_CC) $(NATIVE_CFLAGS) -s -DUCLIBC_TARGET_PREFIX=\"$(TARGET_PREFIX)\" \ -DUCLIBC_DEVEL_PREFIX=\"$(DEVEL_PREFIX)\" \ -DUCLIBC_BUILD_DIR=\"$(shell cd $(TOPDIR) && pwd)\" \ -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \ ldd.c -o $@ - $(STRIPTOOL) -x -R .note -R .comment $@ clean: rm -f $(TARGETS) *.o *~ core |