* Move the burg option into Makefile.common, since it is no longer configurable
[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 # Current working directory, used below
8
9 # Path to directory where object files should be stored during a build.
10 # Set LLVM_OBJ_DIR to "." if you do not want to use a separate place for
11 # object files.
12
13 #LLVM_OBJ_DIR = .
14 LLVM_OBJ_DIR = /localhome/$(shell whoami)
15
16 # Path to location for purify, this is only needed if you build with
17 # ENABLE_PURIFY=1
18
19 PURIFY = /usr/dcs/applications/purify/bin/purify
20
21 # Path to location for LLVM front-end this should only be specified here if you
22 # want to override the value set in Makefile.$(uname)
23 #
24 #LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
25
26 # Path to the C++ compiler to use.  Under linux, for some reason the compiler
27 # driver wants to search the PATH to find the system assembler, which breaks if
28 # the LLVM assembler is in our path.  Hack it to use the assembler in /usr/bin
29 # directly.
30 #
31 CXX = PATH=/usr/bin /usr/dcs/software/evaluation/bin/g++