New testcase, the JIT currently handles this right, I just don't want to
[oota-llvm.git] / Makefile.config
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 # Path to the C++ compiler to use.  This is an optional setting, which defaults
8 # to whatever your gmake defaults to.
9 #
10 # Under Linux, for some reason the compiler driver wants to search the PATH to
11 # find the system assembler, which breaks if the LLVM assembler is in our path.
12 # Hack it to use the assembler in /usr/bin directly.
13 #
14 CXX = PATH=/usr/bin /usr/dcs/software/evaluation/bin/g++
15
16 # We have the same problem with the CC binary, which use used by testcases for
17 # native builds.
18 #
19 CC := PATH=/usr/bin /usr/dcs/software/evaluation/bin/gcc
20
21 #
22 # Path to the linker.
23 #
24 LD = ld
25
26 #
27 # Path to the archiver program.
28 #
29 AR_PATH = ar
30
31 #
32 # The pathnames of the Flex and Bison programs, respectively.
33 #
34 BISON    = bison
35 FLEX     = flex
36
37 # Path to directory where object files should be stored during a build.
38 # Set LLVM_OBJ_DIR to "." if you do not want to use a separate place for
39 # object files.
40
41 #LLVM_OBJ_DIR = .
42 LLVM_OBJ_DIR := /localhome/$(USER)
43
44 # Path to location for LLVM front-end this should only be specified here if you
45 # want to override the value set in Makefile.$(uname)
46 #
47 #LLVMGCCDIR := /home/vadve/lattner/local/x86/llvm-gcc/
48
49 # When this setting is set to true, programs in the llvm/test/Programs hierarchy
50 # are not recompiled from source code.  Instead, the bytecode for the file is
51 # pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
52 # space is limited or when you just don't want to spend time running the C
53 # frontend.
54 #
55 #USE_PRECOMPILED_BYTECODE := 1
56
57 # This path specifies the cannonical location of bytecode files for compiled
58 # versions of the test/Programs/* programs.  This is used as the bytecode source
59 # when USE_PRECOMPILED_BYTECODE is specified or when source code is not
60 # available for the program (such as SPEC).
61 #
62 BYTECODE_REPOSITORY := /home/vadve/lattner/LLVMPrograms
63
64 # Path to location for purify, this is only needed if you build with
65 # ENABLE_PURIFY=1
66
67 PURIFY = /usr/dcs/applications/purify/bin/purify
68
69 #
70 # SPEC benchmarks:
71 #       Set this variable to enable the use of the SPEC benchmarks.  You must
72 #       provide the SPEC benchmarks on your own.
73 #
74 USE_SPEC := 1
75
76 #
77 # Path to the SPEC benchmarks.  If you have the SPEC benchmarks, place the
78 # path here.
79 #
80 SPEC_ROOT := /home/vadve/shared/benchmarks/speccpu2000/benchspec
81
82 #
83 # Path to the PAPI code.  This is used by the reoptimizer only.
84 #
85 PAPIDIR := /home/vadve/shared/papi-2.3.4.1
86
87 # These are options that can either be enabled here, or can be enabled on the
88 # make command line (ie, make ENABLE_PROFILING=1)
89 #
90
91 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
92 # turned on, and Debug builds are turned off.
93 #
94 #ENABLE_OPTIMIZED = 1
95
96 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
97 # information to allow gprof to be used to get execution frequencies.
98 #
99 #ENABLE_PROFILING = 1
100
101 #
102 # This open tells the Makefiles to produce verbose output.
103 # It essentially prints the commands that make is executing
104 #
105 #VERBOSE = 1
106
107 # When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
108 # must be locally installed) to allow for some automated memory error debugging.
109 #
110 #ENABLE_PURIFY    = 1
111