25c9b0a7b27c7b97a12f407be6963f52f0db7b98
[oota-llvm.git] / Makefile.config.in
1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 #===------------------------------------------------------------------------===#
9 #
10 # This file is included by Makefile.common.  It defines paths and other
11 # values specific to a particular installation of LLVM.
12 #
13 #===------------------------------------------------------------------------===#
14
15 # Target operating system for which LLVM will be compiled.
16 OS=@OS@
17
18 # Target hardware architecture
19 ARCH=@ARCH@
20
21 # Endian-ness of the target
22 ENDIAN=@ENDIAN@
23
24 # Path to the C++ compiler to use.  This is an optional setting, which defaults
25 # to whatever your gmake defaults to.
26 CXX = @CXX@
27
28 # Path to the CC binary, which use used by testcases for native builds.
29 CC := @CC@
30
31 # Linker flags.
32 LDFLAGS+=@LDFLAGS@
33
34 # Libraries needed by tools
35 TOOLLINKOPTS=@LIBS@
36
37 # Path to the library archiver program.
38 AR_PATH = @AR@
39
40 # The pathnames of the Flex and Bison programs, respectively.
41 YACC     = @YACC@
42 BISON    = @BISON@
43 FLEX     = @LEX@
44
45 # Paths to miscellaneous programs.
46 RPWD    = pwd
47 SED     = sed
48 RM      = rm
49 ECHO    = echo
50 MKDIR   = @abs_top_srcdir@/autoconf/mkinstalldirs
51 DATE    = date
52 MV      = mv
53 INSTALL = @INSTALL@
54 DOT     = @DOT@
55 ETAGS   = @ETAGS@
56 ETAGSFLAGS = @ETAGSFLAGS@
57
58 # Determine the target for which LLVM should generate code.
59 LLVMGCCARCH := @target@/3.4-llvm
60
61 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
62 LCC1 = @LLVMCC1@
63 LCC1XX = @LLVMCC1PLUS@
64
65 # Path to directory where object files should be stored during a build.
66 # Set OBJ_ROOT to "." if you do not want to use a separate place for
67 # object files.
68 OBJ_ROOT := .
69
70 # Path to location for LLVM C/C++ front-end. You can modify this if you
71 # want to override the value set by configure.
72 LLVMGCCDIR := @LLVMGCCDIR@
73
74 # When this variable is set to 1, programs in the llvm/test/Programs hierarchy
75 # are not recompiled from source code.  Instead, the bytecode for the file is
76 # pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
77 # space is limited or when you just don't want to spend time running the C
78 # frontend.
79 #USE_PRECOMPILED_BYTECODE := 1
80 @UPB@
81
82 # This path specifies the cannonical location of bytecode files for compiled
83 # versions of the test/Programs/* programs.  This is used as the bytecode source
84 # when USE_PRECOMPILED_BYTECODE is specified or when source code is not
85 # available for the program (such as SPEC).
86 BYTECODE_REPOSITORY := @BCR@
87
88 # SPEC benchmarks:
89 #       If these are set then run the SPEC benchmarks.
90 #       You must provide the SPEC benchmarks on your own.
91 @USE_SPEC2000@
92 @USE_SPEC95@
93
94 # Path to the SPEC benchmarks.
95 SPEC2000_ROOT := @SPEC2000_ROOT@
96 SPEC95_ROOT := @SPEC95_ROOT@
97
98 # Path to the Povray source code.
99 @USE_POVRAY@
100 POVRAY_ROOT := @POVRAY_ROOT@
101
102 # Path to the PAPI code.  This is used by the reoptimizer only.
103 #PAPIDIR := /home/vadve/shared/papi-2.3.4.1
104 PAPIDIR := @PAPIDIR@
105
106 # These are options that can either be enabled here, or can be enabled on the
107 # make command line (ie, make ENABLE_PROFILING=1):
108
109 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
110 # turned on, and Debug builds are turned off.
111 #ENABLE_OPTIMIZED = 1
112 @ENABLE_OPTIMIZED@
113
114 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
115 # information to allow gprof to be used to get execution frequencies.
116 #ENABLE_PROFILING = 1
117
118 # This option tells the Makefiles to produce verbose output.
119 # It essentially prints the commands that make is executing
120 #VERBOSE = 1
121
122 # Enable JIT for this platform
123 @JIT@
124
125 # Disable LLC diffs for testing.
126 @DISABLE_LLC_DIFFS@
127
128 # Shared library extension for this platform.
129 SHLIBEXT = @SHLIBEXT@
130
131 # Executable file extension for this platform.
132 EXEEXT = @EXEEXT@
133
134 ###########################################################################
135 # Directory Configuration
136 #       This section of the Makefile determines what is where.  To be
137 #       specific, there are several locations that need to be defined:
138 #
139 #       o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
140 #       o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
141 #
142 #       o BUILD_SRC_DIR  : The directory containing the code to build.
143 #       o BUILD_SRC_ROOT : The root directory of the code to build.
144 #
145 #       o BUILD_OBJ_DIR  : The directory in which compiled code will be placed.
146 #       o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
147 #
148 ###########################################################################
149
150 # Set the object build directory.  By default, it is the current directory.
151 ifndef BUILD_OBJ_DIR
152 BUILD_OBJ_DIR := $(subst //,/,$(shell $(RPWD)))
153 endif
154
155 # Set the root of the object directory.
156 ifndef BUILD_OBJ_ROOT
157 BUILD_OBJ_ROOT := $(subst //,/,$(shell cd $(BUILD_OBJ_DIR)/$(LEVEL); $(RPWD)))
158 endif
159
160 # Set the source build directory.  That is almost always the current directory.
161 ifndef BUILD_SRC_DIR
162 BUILD_SRC_DIR := $(subst //,/,@abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
163 endif
164
165 # Set the source root directory.
166 ifndef BUILD_SRC_ROOT
167 BUILD_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
168 endif
169
170 # Set the LLVM object directory.
171 ifndef LLVM_OBJ_ROOT
172 ifdef LLVM_SRC_ROOT
173 LLVM_OBJ_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(RPWD))
174 else
175 LLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
176 endif
177 endif
178
179 # Set the LLVM source directory.
180 # It is typically the root directory of what we're compiling now.
181 ifndef LLVM_SRC_ROOT
182 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
183 endif
184
185 # Set SourceDir for backwards compatbility.
186 ifndef SourceDir
187 SourceDir=$(BUILD_SRC_DIR)
188 endif
189
190 # Installation directories, as provided by the configure script.
191 exec_prefix = @exec_prefix@
192 prefix = @prefix@
193 program_transform_name = @program_transform_name@
194 bindir = @bindir@
195 sbindir = @sbindir@
196 libexecdir = @libexecdir@
197 datadir = @datadir@
198 sysconfdir = @sysconfdir@
199 sharedstatedir = @sharedstatedir@ 
200 localstatedir = @localstatedir@
201 libdir = @libdir@
202 bytecode_libdir = $(LLVMGCCDIR)/bytecode-libs
203 includedir = @includedir@
204 infodir = @infodir@
205 mandir = @mandir@
206 INSTALL_PROGRAM = @INSTALL_PROGRAM@
207 INSTALL_SCRIPT = @INSTALL_SCRIPT@
208 INSTALL_DATA = @INSTALL_DATA@
209