Eliminate the concept of a deferred symbol table. The optimization really isn't,
[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 # Path to location for purify, this is only needed if you build with
34 # ENABLE_PURIFY=1
35
36 PURIFY = /usr/dcs/applications/purify/bin/purify
37