2002-08-29 23:27:38 +00:00
|
|
|
#===-- Makefile.config - Local configuration for LLVM ------*- makefile -*--====
|
|
|
|
#
|
|
|
|
# This file is included by Makefile.common. It defines paths and other
|
|
|
|
# values specific to a particular installation of LLVM.
|
|
|
|
#===-----------------------------------------------------------------------====
|
|
|
|
|
2002-09-19 19:59:42 +00:00
|
|
|
# Path to the C++ compiler to use. This is an optional setting, which defaults
|
|
|
|
# to whatever your gmake defaults to.
|
|
|
|
#
|
|
|
|
# Under Linux, for some reason the compiler driver wants to search the PATH to
|
|
|
|
# find the system assembler, which breaks if the LLVM assembler is in our path.
|
|
|
|
# Hack it to use the assembler in /usr/bin directly.
|
|
|
|
#
|
|
|
|
CXX = PATH=/usr/bin /usr/dcs/software/evaluation/bin/g++
|
2002-08-29 23:27:38 +00:00
|
|
|
|
2002-09-19 21:33:10 +00:00
|
|
|
# We have the same problem with the CC binary, which use used by testcases for
|
|
|
|
# native builds.
|
|
|
|
#
|
2002-09-20 14:01:14 +00:00
|
|
|
CC := PATH=/usr/bin /usr/dcs/software/evaluation/bin/gcc
|
2002-09-19 21:33:10 +00:00
|
|
|
|
2002-08-29 23:27:38 +00:00
|
|
|
# Path to directory where object files should be stored during a build.
|
|
|
|
# Set LLVM_OBJ_DIR to "." if you do not want to use a separate place for
|
|
|
|
# object files.
|
|
|
|
#
|
2002-09-18 19:32:17 +00:00
|
|
|
#LLVM_OBJ_DIR = .
|
2002-09-22 23:35:11 +00:00
|
|
|
LLVM_OBJ_DIR := /localhome/$(USER)
|
2002-08-29 23:27:38 +00:00
|
|
|
|
2002-09-19 19:43:29 +00:00
|
|
|
# Path to location for LLVM front-end this should only be specified here if you
|
|
|
|
# want to override the value set in Makefile.$(uname)
|
|
|
|
#
|
|
|
|
#LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
|
2002-09-18 19:32:17 +00:00
|
|
|
|
2002-09-19 19:59:42 +00:00
|
|
|
# Path to location for purify, this is only needed if you build with
|
|
|
|
# ENABLE_PURIFY=1
|
|
|
|
#
|
|
|
|
PURIFY = /usr/dcs/applications/purify/bin/purify
|
|
|
|
|