Fold open interval ends handling into
[oota-llvm.git] / Makefile.config.in
1 #===-- Makefile.config - Local configuration for LLVM ------*- makefile -*--====
2 #
3 # This file is included by Makefile.common.  It defines paths and other
4 # values specific to a particular installation of LLVM.
5 #===-----------------------------------------------------------------------====
6
7 #
8 # Target operating system for which LLVM will be compiled.
9 #
10 OS=@OS@
11
12 #
13 # Target hardware architecture
14 #
15 ARCH=@ARCH@
16
17 # Path to the C++ compiler to use.  This is an optional setting, which defaults
18 # to whatever your gmake defaults to.
19 #
20 # Under Linux, for some reason the compiler driver wants to search the PATH to
21 # find the system assembler, which breaks if the LLVM assembler is in our path.
22 # Hack it to use the assembler in /usr/bin directly.
23 #
24 CXX = @CXX@
25
26 # We have the same problem with the CC binary, which use used by testcases for
27 # native builds.
28 #
29 CC := @CC@
30
31 #
32 # Compilation flags for the C and C++ compilers.
33 #
34
35 #
36 # Removing the compiler flags for now.  They interfere with the test suite
37 # (which has its own autoconf stuff), and we don't use -DHAVE_CONFIG_H anyway.
38 #
39 #CPPFLAGS+=@DEFS@
40 #CCFLAGS+=@DEFS@
41 LDFLAGS+=@LDFLAGS@
42
43 #
44 # Removed since it prevents the tests from working properly.
45 #
46 #LIBS+=@LIBS@
47
48 #
49 # Libraries needed by tools
50 #
51 TOOLLINKOPTS=@LIBS@
52
53 #
54 # Path to the archiver program.
55 #
56 AR_PATH = @AR@
57
58 #
59 # The pathnames of the Flex and Bison programs, respectively.
60 #
61 YACC     = @YACC@
62 BISON    = @BISON@
63 FLEX     = @LEX@
64
65 #
66 # Paths to miscellaneous programs.
67 #
68 RPWD    = pwd
69 SED     = sed
70 RM      = rm
71 ECHO    = echo
72 MKDIR   = @abs_top_srcdir@/autoconf/mkinstalldirs
73 DATE    = date
74 MV      = mv
75 INSTALL = @INSTALL@
76 DOT     = @DOT@
77 ETAGS   = @ETAGS@
78
79 #
80 # Determine the target for which LLVM should generate code.
81 #
82 LLVMGCCARCH := @target@/3.4-llvm
83
84 # Path to directory where object files should be stored during a build.
85 # Set OBJ_ROOT to "." if you do not want to use a separate place for
86 # object files.
87
88 #OBJ_ROOT = .
89 OBJ_ROOT := .
90
91 # Path to location for LLVM front-end this should only be specified here if you
92 # want to override the value set in Makefile.$(uname)
93 #
94 LLVMGCCDIR := @LLVMGCCDIR@
95
96 # When this setting is set to true, programs in the llvm/test/Programs hierarchy
97 # are not recompiled from source code.  Instead, the bytecode for the file is
98 # pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
99 # space is limited or when you just don't want to spend time running the C
100 # frontend.
101 #
102 #USE_PRECOMPILED_BYTECODE := 1
103 @UPB@
104
105 # This path specifies the cannonical location of bytecode files for compiled
106 # versions of the test/Programs/* programs.  This is used as the bytecode source
107 # when USE_PRECOMPILED_BYTECODE is specified or when source code is not
108 # available for the program (such as SPEC).
109 #
110 BYTECODE_REPOSITORY := @BCR@
111
112 #
113 # SPEC benchmarks:
114 #       Set the USE_SPEC variable to enable the use of the SPEC benchmarks.
115 #       You must provide the SPEC benchmarks on your own.
116 #
117 @USE_SPEC@
118
119 #
120 # Path to the SPEC benchmarks.  If you have the SPEC benchmarks, place the
121 # path here.
122 #
123 #SPEC_ROOT := /home/vadve/shared/benchmarks/speccpu2000/benchspec
124 SPEC_ROOT := @SPEC_ROOT@
125
126 #
127 # Path to the PAPI code.  This is used by the reoptimizer only.
128 #
129 #PAPIDIR := /home/vadve/shared/papi-2.3.4.1
130 PAPIDIR := @PAPIDIR@
131
132 # These are options that can either be enabled here, or can be enabled on the
133 # make command line (ie, make ENABLE_PROFILING=1)
134 #
135
136 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
137 # turned on, and Debug builds are turned off.
138 #
139 #ENABLE_OPTIMIZED = 1
140 @ENABLE_OPTIMIZED@
141
142 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
143 # information to allow gprof to be used to get execution frequencies.
144 #
145 #ENABLE_PROFILING = 1
146
147 #
148 # This option tells the Makefiles to produce verbose output.
149 # It essentially prints the commands that make is executing
150 #
151 #VERBOSE = 1
152
153 #
154 # Enable JIT for this platform
155 #
156 @JIT@
157
158 #
159 # Disable LLC diffs for testing.
160 #
161 @DISABLE_LLC_DIFFS@
162
163 ###########################################################################
164 # Directory Configuration
165 #       This section of the Makefile determines what is where.  To be
166 #       specific, there are several locations that need to be defined:
167 #
168 #       o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
169 #       o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
170 #
171 #       o BUILD_SRC_DIR  : The directory containing the code to build.
172 #       o BUILD_SRC_ROOT : The root directory of the code to build.
173 #
174 #       o BUILD_OBJ_DIR  : The directory in which compiled code will be placed.
175 #       o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
176 #
177 ###########################################################################
178
179 #
180 # Set the object build directory.  By default, it is the current directory.
181 #
182 ifndef BUILD_OBJ_DIR
183 BUILD_OBJ_DIR := $(subst //,/,$(shell $(RPWD)))
184 endif
185
186 #
187 # Set the root of the object directory.
188 #
189 ifndef BUILD_OBJ_ROOT
190 BUILD_OBJ_ROOT := $(subst //,/,$(shell cd $(BUILD_OBJ_DIR)/$(LEVEL); $(RPWD)))
191 endif
192
193 #
194 # Set the source build directory.  That is almost always the current directory.
195 #
196 ifndef BUILD_SRC_DIR
197 BUILD_SRC_DIR := $(subst //,/,@abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
198 endif
199
200 #
201 # Set the source root directory.
202 #
203 ifndef BUILD_SRC_ROOT
204 BUILD_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
205 endif
206
207 #
208 # Set the LLVM object directory.
209 #
210 ifndef LLVM_OBJ_ROOT
211 ifdef LLVM_SRC_ROOT
212 LLVM_OBJ_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(RPWD))
213 else
214 LLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
215 endif
216 endif
217
218 #
219 # Set the LLVM source directory.
220 # It is typically the root directory of what we're compiling now.
221 #
222 ifndef LLVM_SRC_ROOT
223 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
224 endif
225
226 #
227 # Set SourceDir for backwards compatbility.
228 #
229 ifndef SourceDir
230 SourceDir=$(BUILD_SRC_DIR)
231 endif
232
233 # Installation directories, as provided by the configure script.
234
235 exec_prefix = @exec_prefix@
236 prefix = @prefix@
237 program_transform_name = @program_transform_name@
238 bindir = @bindir@
239 sbindir = @sbindir@
240 libexecdir = @libexecdir@
241 datadir = @datadir@
242 sysconfdir = @sysconfdir@
243 sharedstatedir = @sharedstatedir@ 
244 localstatedir = @localstatedir@
245 libdir = @libdir@
246 includedir = @includedir@
247 infodir = @infodir@
248 mandir = @mandir@
249 INSTALL_PROGRAM = @INSTALL_PROGRAM@
250 INSTALL_SCRIPT = @INSTALL_SCRIPT@
251 INSTALL_DATA = @INSTALL_DATA@
252