[llvm-commits] CVS: llvm/Makefile.config.in
Reid Spencer
reid at x10sys.com
Tue Dec 21 21:57:20 PST 2004
Changes in directory llvm:
Makefile.config.in updated: 1.44 -> 1.45
---
Log message:
For PR432: http://llvm.cs.uiuc.edu/PR432 :
* Use new configuration variables to compute LLVMGCC and LLVMGXX variables.
---
Diffs of the changes: (+9 -7)
Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.44 llvm/Makefile.config.in:1.45
--- llvm/Makefile.config.in:1.44 Thu Dec 16 11:48:14 2004
+++ llvm/Makefile.config.in Tue Dec 21 23:57:09 2004
@@ -94,22 +94,25 @@
# Paths to miscellaneous programs we assume are present
RPWD := pwd
ECHO := echo
+
+# Path to location for LLVM C/C++ front-end. You can modify this if you
+# want to override the value set by configure.
+LLVMGCCDIR := @LLVMGCCDIR@
+
# Determine the target for which LLVM should generate code.
LLVMGCCARCH := @target@/3.4-llvm
# Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
-LCC1 = @LLVMCC1@
-LCC1XX = @LLVMCC1PLUS@
+LLVMGCC := @LLVMGCC@
+LLVMGXX := @LLVMGXX@
+LLVMCC1 := @LLVMCC1@
+LLVMCC1PLUS := @LLVMCC1PLUS@
# Path to directory where object files should be stored during a build.
# Set OBJ_ROOT to "." if you do not want to use a separate place for
# object files.
OBJ_ROOT := .
-# Path to location for LLVM C/C++ front-end. You can modify this if you
-# want to override the value set by configure.
-LLVMGCCDIR := @LLVMGCCDIR@
-
# These are options that can either be enabled here, or can be enabled on the
# make command line (ie, make ENABLE_PROFILING=1):
@@ -203,7 +206,6 @@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
-cferuntime_libdir = $(LLVMGCCDIR)/lib
includedir = @includedir@
infodir = @infodir@
mandir = @mandir@
More information about the llvm-commits
mailing list