[llvm-commits] CVS: llvm/Makefile.config.in

Reid Spencer reid at x10sys.com
Fri Apr 22 10:14:26 PDT 2005



Changes in directory llvm:

Makefile.config.in updated: 1.50 -> 1.51
---
Log message:

Two changes:
1. Get rid of TOOLLINKOPTS as it is a hold over from llvm-test and only
   used to communicate additional libraries to the linker. The *standard*
   way to do that is with the LIBS variable which this change supports.

2. Allow the TARGETS_TO_BUILD variable to be set from the configuration
   substitution. This is the result of the --enable-target= parameter to
   the configure script.


---
Diffs of the changes:  (+5 -3)

 Makefile.config.in |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)


Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.50 llvm/Makefile.config.in:1.51
--- llvm/Makefile.config.in:1.50	Wed Feb 23 21:56:32 2005
+++ llvm/Makefile.config.in	Fri Apr 22 12:14:14 2005
@@ -100,6 +100,9 @@
 # Target triple (cpu-vendor-os) for which we should generate code
 TARGET_TRIPLE=@target@
 
+# Targets that we should build
+TARGETS_TO_BUILD=@TARGETS_TO_BUILD@
+
 # Endian-ness of the target
 ENDIAN=@ENDIAN@
 
@@ -113,9 +116,6 @@
 # Linker flags.
 LDFLAGS+=@LDFLAGS@
 
-# Libraries needed by tools
-TOOLLINKOPTS=@LIBS@
-
 # Path to the library archiver program.
 AR_PATH = @AR@
 
@@ -150,6 +150,8 @@
 TCLSH      := @TCLSH@
 ZIP        := @ZIP@
 
+LIBS       := @LIBS@
+
 # 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@






More information about the llvm-commits mailing list