Use libinstr.$(ARCH).a instead of libinstr64.a
[oota-llvm.git] / test / Makefile.tests
1 ##----------------------------------------------------------*- Makefile -*-===##
2 ## Common rules for generating, linking, and compiling via LLVM.  This is
3 ## used to implement a robust testing framework for LLVM
4 ##-------------------------------------------------------------------------===##
5
6 # If the user specified a TEST= option on the command line, we do not want to do
7 # the default testing type.  Instead, we change the default target to be the
8 # test:: target.
9 #
10 ifdef TEST
11 test::
12 endif
13
14 include ${LEVEL}/Makefile.common
15
16 # Specify ENABLE_STATS on the command line to enable -stats and -time-passes
17 # output from gccas and gccld.
18 ifdef ENABLE_STATS
19 STATS = -stats -time-passes
20 endif
21
22
23 .PHONY: clean default
24
25 # These files, which might be intermediate results, should not be deleted by
26 # make
27 .PRECIOUS: Output/%.bc  Output/%.ll
28 .PRECIOUS: Output/%.tbc Output/%.tll
29 .PRECIOUS: Output/.dir
30 .PRECIOUS: Output/%.llvm.bc
31 .PRECIOUS: Output/%.llvm
32
33 TOOLS    = $(LLVMTOOLCURRENT)
34
35 # LLVM Tool Definitions...
36 #
37 LCC      = $(LLVMGCCDIR)/bin/gcc
38 LCC1     = $(LLVMGCCDIR)/lib/gcc-lib/$(LLVMGCCARCH)/cc1
39 LCXX     = $(LLVMGCCDIR)/bin/g++
40 LCC1XX   = $(LLVMGCCDIR)/lib/gcc-lib/$(LLVMGCCARCH)/cc1plus
41 LLI      = $(TOOLS)/lli
42 LLC      = $(TOOLS)/llc
43 LAS      = $(TOOLS)/as
44 LGCCAS   = $(TOOLS)/gccas
45 LGCCLD   = $(TOOLS)/gccld -L$(LLVMGCCDIR)/lib/gcc-lib/$(LLVMGCCARCH) -L$(LLVMGCCDIR)/lib
46 LGCCLDPROG = $(TOOLS)/gccld
47 LDIS     = $(TOOLS)/dis 
48 LOPT     = $(TOOLS)/opt
49 LLINK    = $(TOOLS)/link
50 LANALYZE = $(TOOLS)/analyze
51 LBUGPOINT= $(TOOLS)/bugpoint
52
53 LCCFLAGS  += -O2 -Wall
54 LCXXFLAGS += -O2 -Wall
55 LLCFLAGS =
56 FAILURE  = $(LEVEL)/test/Failure.sh
57 TESTRUNR = @echo Running test: $<; \
58              PATH=$(LLVMTOOLCURRENT):$(LEVEL)/test/Scripts:$(PATH) \
59                   $(LEVEL)/test/TestRunner.sh
60
61 # Native Tool Definitions
62 NATGCC  = $(CC)
63 CP      = /bin/cp -f
64
65 ## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
66 ## mark that tracing on, and set the TRACELIBS variable.
67 TRACEFLAGS = 
68 ifeq ($(TRACE), yes)
69     TRACEFLAGS += -trace
70     DOTRACING = yes
71 else
72     ifeq ($(TRACEM), yes)
73         TRACEFLAGS += -tracem
74         DOTRACING = yes
75     endif
76 endif
77 ifeq ($(DOTRACING), yes)
78     TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
79 endif
80
81
82 LLCLIBS := $(LLCLIBS) -lm
83
84 clean::
85         $(RM) -f a.out core
86         $(RM) -rf Output/
87
88 # Compile from X.c to Output/X.ll
89 Output/%.ll: $(SourceDir)%.c $(LCC1) Output/.dir $(INCLUDES)
90         $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
91
92 # Compile from X.cpp to Output/X.ll
93 Output/%.ll: $(SourceDir)%.cpp $(LCC1XX) Output/.dir $(INCLUDES)
94         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
95
96 # Compile from X.cc to Output/X.ll
97 Output/%.ll: $(SourceDir)%.cc $(LCC1XX) Output/.dir $(INCLUDES)
98         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
99
100 # LLVM Assemble from Output/X.ll to Output/X.bc.  Output/X.ll must have come
101 # from GCC output, so use GCCAS.
102 #
103 Output/%.bc: Output/%.ll $(LGCCAS)
104         $(LGCCAS) $(STATS) $< -o $@
105
106 # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming directly from
107 # LLVM source, use the non-transforming assembler.
108 #
109 Output/%.bc: %.ll $(LAS) Output/.dir
110         $(LAS) -f $< -o $@
111
112 #
113 # Testing versions of provided utilities...
114 #
115 Output/%.tll: %.c $(LCC1) Output/.dir $(INCLUDES)
116         @echo "======== Compiling $<"
117         $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ || \
118             ( rm -f $@; $(FAILURE) $@ )
119
120 Output/%.tll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
121         @echo "======== Compiling $<"
122         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ || \
123             ( rm -f $@; $(FAILURE) $@ )
124
125 Output/%.tbc: Output/%.tll $(LAS)
126         @echo "======== Assembling $<"
127         $(LAS) -f $< -o $@ || \
128             ( rm -f $@; $(FAILURE) $@ )
129
130
131 ## Cancel built-in implicit rules that override above rules
132 %: %.s
133
134 %: %.c
135
136 %.o: %.c
137