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