[llvm-commits] CVS: llvm/Makefile.common

John Criswell criswell at cs.uiuc.edu
Fri May 30 10:51:01 PDT 2003


Changes in directory llvm:

Makefile.common updated: 1.86 -> 1.87

---
Log message:

Added configurable options for the Linker and Archiver.


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.86 llvm/Makefile.common:1.87
--- llvm/Makefile.common:1.86	Thu May 29 16:49:00 2003
+++ llvm/Makefile.common	Fri May 30 10:50:31 2003
@@ -234,7 +234,7 @@
 
 
 # Create one .o file from a bunch of .o files...
-Relink = ld -r
+Relink = ${LD} -r
 
 # MakeSO - Create a .so file from a .o files...
 MakeSO   := $(CXX) $(MakeSharedObjectOption)
@@ -246,7 +246,7 @@
 DependC  := $(CC)  -MM -I$(LEVEL)/include -I$(PROJ_INCLUDE) $(CPPFLAGS) 
 
 # Archive a bunch of .o files into a .a file...
-AR       = ar cq 
+AR       = ${AR_PATH} cq 
 
 #----------------------------------------------------------
 





More information about the llvm-commits mailing list