diff options
| author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-07-08 18:39:51 +0000 | 
|---|---|---|
| committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2003-07-08 18:39:51 +0000 | 
| commit | eb44eb1e08aa8b1904069d493cdd54654bd950e6 (patch) | |
| tree | 48b00066699a85ea4b976dbd4e3785b478430ef3 | |
| parent | 6c9dc89ba5dc433382999cc686e08ab8c21c99e7 (diff) | |
| download | bcm5719-llvm-eb44eb1e08aa8b1904069d493cdd54654bd950e6.tar.gz bcm5719-llvm-eb44eb1e08aa8b1904069d493cdd54654bd950e6.zip | |
Use libinstr.$(ARCH).a instead of libinstr64.a
Also, $(RM) needs -f flag.
llvm-svn: 7128
| -rw-r--r-- | llvm/test/Makefile.tests | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/test/Makefile.tests b/llvm/test/Makefile.tests index 3d66f17b32a..c4e7090687b 100644 --- a/llvm/test/Makefile.tests +++ b/llvm/test/Makefile.tests @@ -75,14 +75,14 @@ else      endif  endif  ifeq ($(DOTRACING), yes) -    TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64 +    TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)  endif  LLCLIBS := $(LLCLIBS) -lm  clean:: -	$(RM) a.out core +	$(RM) -f a.out core  	$(RM) -rf Output/  # Compile from X.c to Output/X.ll | 

