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