New variable which is just the GCCLD tool
[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 = PATH=$(LLVMTOOLCURRENT):$(PATH) $(LEVEL)/test/TestRunner.sh
58
59 # Native Tool Definitions
60 NATGCC  = $(CC)
61 CP      = /bin/cp -f
62
63 ## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
64 ## mark that tracing on, and set the TRACELIBS variable.
65 TRACEFLAGS = 
66 ifeq ($(TRACE), yes)
67     TRACEFLAGS += -trace
68     DOTRACING = yes
69 else
70     ifeq ($(TRACEM), yes)
71         TRACEFLAGS += -tracem
72         DOTRACING = yes
73     endif
74 endif
75 ifeq ($(DOTRACING), yes)
76     TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64
77 endif
78
79
80 LLCLIBS := $(LLCLIBS) -lm
81
82 clean::
83         $(RM) a.out core
84         $(RM) -rf Output/
85
86 # Compile from X.c to Output/X.ll
87 Output/%.ll: $(SourceDir)%.c $(LCC1) Output/.dir $(INCLUDES)
88         $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
89
90 # Compile from X.cpp to Output/X.ll
91 Output/%.ll: $(SourceDir)%.cpp $(LCC1XX) Output/.dir $(INCLUDES)
92         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
93
94 # Compile from X.cc to Output/X.ll
95 Output/%.ll: $(SourceDir)%.cc $(LCC1XX) Output/.dir $(INCLUDES)
96         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
97
98 # LLVM Assemble from Output/X.ll to Output/X.bc.  Output/X.ll must have come
99 # from GCC output, so use GCCAS.
100 #
101 Output/%.bc: Output/%.ll $(LGCCAS)
102         $(LGCCAS) $(STATS) $< -o $@
103
104 # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming directly from
105 # LLVM source, use the non-transforming assembler.
106 #
107 Output/%.bc: %.ll $(LAS) Output/.dir
108         $(LAS) -f $< -o $@
109
110 #
111 # Testing versions of provided utilities...
112 #
113 Output/%.tll: %.c $(LCC1) Output/.dir $(INCLUDES)
114         @echo "======== Compiling $<"
115         $(LCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ || \
116             ( rm -f $@; $(FAILURE) $@ )
117
118 Output/%.tll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
119         @echo "======== Compiling $<"
120         $(LCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ || \
121             ( rm -f $@; $(FAILURE) $@ )
122
123 Output/%.tbc: Output/%.tll $(LAS)
124         @echo "======== Assembling $<"
125         $(LAS) -f $< -o $@ || \
126             ( rm -f $@; $(FAILURE) $@ )
127
128
129 ## Cancel built-in implicit rules that override above rules
130 %: %.s
131
132 %: %.c
133
134 %.o: %.c
135