From: Brian Gaeke Date: Wed, 4 Feb 2004 21:41:23 +0000 (+0000) Subject: Always replace instead of appending when creating archive files. It may be X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7a45c49344a4cfd9f24a8aaf8351d6bfe981346a;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11122 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index bae0e9c0013..017af9c64c8 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -352,7 +352,7 @@ Depend := $(CXX) -MM -I$(LEVEL)/include $(CPPFLAGS) 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 #----------------------------------------------------------