Fix Bug: Linker/2003-04-26-NullPtrLinkProblem.ll
[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 # Path to directory where object files should be stored during a build.
22 # Set LLVM_OBJ_DIR to "." if you do not want to use a separate place for
23 # object files.
24
25 #LLVM_OBJ_DIR = .
26 LLVM_OBJ_DIR := /localhome/$(USER)
27
28 # Path to location for LLVM front-end this should only be specified here if you
29 # want to override the value set in Makefile.$(uname)
30 #
31 #LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
32
33 # When this setting is set to true, programs in the llvm/test/Programs hierarchy
34 # are not recompiled from source code.  Instead, the bytecode for the file is
35 # pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
36 # space is limited or when you just don't want to spend time running the C
37 # frontend.
38 #
39 #USE_PRECOMPILED_BYTECODE := 1
40
41 # This path specifies the cannonical location of bytecode files for compiled
42 # versions of the test/Programs/* programs.  This is used as the bytecode source
43 # when USE_PRECOMPILED_BYTECODE is specified or when source code is not
44 # available for the program (such as SPEC).
45 #
46 BYTECODE_REPOSITORY := /home/vadve/lattner/LLVMPrograms
47
48 # Path to location for purify, this is only needed if you build with
49 # ENABLE_PURIFY=1
50
51 PURIFY = /usr/dcs/applications/purify/bin/purify