diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-11-16 20:35:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-11-16 20:35:25 +0000 |
commit | 350c0215ef0e7cd915c2a2931b548e75d540a686 (patch) | |
tree | 97825f27b89cbfb0029c686d305184b8416af6da /test/unistd | |
parent | aa85deb86c823f2ee9e966c6676a092d774cd493 (diff) |
Fix it so files are not stripped when debugging (doh!). Fix up strip
rules. With this fix in place, I can now find what is wrong with malloc...
-Erik
Diffstat (limited to 'test/unistd')
-rw-r--r-- | test/unistd/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/unistd/Makefile b/test/unistd/Makefile index 27551a873..c922bc676 100644 --- a/test/unistd/Makefile +++ b/test/unistd/Makefile @@ -13,11 +13,6 @@ EXTRA_LIBS=$(TOPDIR)libc.a -lgcc YCFLAGS = -Wall -Os -fomit-frame-pointer YLDFLAGS = -s --static -# Allow alternative stripping tools to be used... -ifndef $(STRIPTOOL) - STRIPTOOL = strip -endif -STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $@ TARGETS=fork fork_glibc @@ -30,6 +25,7 @@ fork: fork.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) + $(STRIPTOOL) -x -R .note -R .comment $@ ./$@ -@ echo " " @@ -40,6 +36,7 @@ fork_glibc: fork.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo " " $(CC) $(YCFLAGS) -c $< -o $@.o $(CC) $(YLDFLAGS) --static $@.o -o $@ + $(STRIPTOOL) -x -R .note -R .comment $@ -./$@ -@ echo " " |