[llvm-commits] CVS: llvm/Makefile.rules
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Feb 4 15:42:09 PST 2004
Changes in directory llvm:
Makefile.rules updated: 1.176 -> 1.177
---
Log message:
Always replace instead of appending when creating archive files. It may be
slightly slower, but I think we can handle it, especially if it means
BytecodeLibs are correctly regenerated.
---
Diffs of the changes: (+1 -1)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.176 llvm/Makefile.rules:1.177
--- llvm/Makefile.rules:1.176 Thu Jan 22 16:53:48 2004
+++ llvm/Makefile.rules Wed Feb 4 15:41:23 2004
@@ -352,7 +352,7 @@
DependC := $(CC) -MM -I$(LEVEL)/include $(CPPFLAGS)
# Archive a bunch of .o files into a .a file...
-AR = ${AR_PATH} cq
+AR = $(AR_PATH) cr
#----------------------------------------------------------
More information about the llvm-commits
mailing list