(1) Rematerialize nodes from the globals graph into the current graph
[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 BISON    = @YACC@
62 FLEX     = @LEX@
63
64 #
65 # Paths to miscellaneous programs.
66 #
67 SED     = @SED@
68 RM      = @RM@
69 ECHO    = @ECHO@
70 MKDIR   = @abs_top_srcdir@/mkinstalldirs
71 DATE    = @DATE@
72 MV      = @MV@
73 INSTALL = @INSTALL@
74 DOT     = @DOT@
75 ETAGS   = @ETAGS@
76
77 #
78 # Determine the target for which LLVM should generate code.
79 #
80 LLVMGCCARCH := @target@/3.4-llvm
81
82 # Path to directory where object files should be stored during a build.
83 # Set OBJ_ROOT to "." if you do not want to use a separate place for
84 # object files.
85
86 #OBJ_ROOT = .
87 OBJ_ROOT := @OBJROOT@
88
89 # Path to location for LLVM front-end this should only be specified here if you
90 # want to override the value set in Makefile.$(uname)
91 #
92 LLVMGCCDIR := @LLVMGCCDIR@
93
94 # When this setting is set to true, programs in the llvm/test/Programs hierarchy
95 # are not recompiled from source code.  Instead, the bytecode for the file is
96 # pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
97 # space is limited or when you just don't want to spend time running the C
98 # frontend.
99 #
100 #USE_PRECOMPILED_BYTECODE := 1
101 @UPB@
102
103 # This path specifies the cannonical location of bytecode files for compiled
104 # versions of the test/Programs/* programs.  This is used as the bytecode source
105 # when USE_PRECOMPILED_BYTECODE is specified or when source code is not
106 # available for the program (such as SPEC).
107 #
108 BYTECODE_REPOSITORY := @BCR@
109
110 # Path to location for purify, this is only needed if you build with
111 # ENABLE_PURIFY=1
112
113 PURIFY = @PURIFY@
114
115 #
116 # SPEC benchmarks:
117 #       Set the USE_SPEC variable to enable the use of the SPEC benchmarks.
118 #       You must provide the SPEC benchmarks on your own.
119 #
120 @USE_SPEC@
121
122 #
123 # Path to the SPEC benchmarks.  If you have the SPEC benchmarks, place the
124 # path here.
125 #
126 #SPEC_ROOT := /home/vadve/shared/benchmarks/speccpu2000/benchspec
127 SPEC_ROOT := @SPEC_ROOT@
128
129 #
130 # Path to the PAPI code.  This is used by the reoptimizer only.
131 #
132 #PAPIDIR := /home/vadve/shared/papi-2.3.4.1
133 PAPIDIR := @PAPIDIR@
134
135 # These are options that can either be enabled here, or can be enabled on the
136 # make command line (ie, make ENABLE_PROFILING=1)
137 #
138
139 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
140 # turned on, and Debug builds are turned off.
141 #
142 #ENABLE_OPTIMIZED = 1
143 @ENABLE_OPTIMIZED@
144
145 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
146 # information to allow gprof to be used to get execution frequencies.
147 #
148 #ENABLE_PROFILING = 1
149
150 #
151 # This option tells the Makefiles to produce verbose output.
152 # It essentially prints the commands that make is executing
153 #
154 #VERBOSE = 1
155
156 # When ENABLE_PURIFY is set to 1, the LLVM tools are linked with purify (which
157 # must be locally installed) to allow for some automated memory error debugging.
158 #
159 #ENABLE_PURIFY = 1
160 @ENABLE_PURIFY@
161
162 #
163 # Enable JIT for this platform
164 #
165 @JIT@
166
167 #
168 # Disable LLC diffs for testing.
169 #
170 @DISABLE_LLC_DIFFS@
171