From: Vikram S. Adve Date: Tue, 8 Jul 2003 18:39:51 +0000 (+0000) Subject: Use libinstr.$(ARCH).a instead of libinstr64.a X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1239874a1e46c0d43517b24f6bcc0d7b5d590bfb;p=oota-llvm.git Use libinstr.$(ARCH).a instead of libinstr64.a Also, $(RM) needs -f flag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7128 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile.tests b/test/Makefile.tests index 3d66f17b32a..c4e7090687b 100644 --- a/test/Makefile.tests +++ b/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