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.

llvm-svn: 11122
This commit is contained in:
Brian Gaeke 2004-02-04 21:41:23 +00:00
parent 9ce98a7e9f
commit fe66239860
1 changed files with 1 additions and 1 deletions

View File

@ -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
#----------------------------------------------------------