Skip to content
Snippets Groups Projects
Commit fe662398 authored by Brian Gaeke's avatar Brian Gaeke
Browse files

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
parent 9ce98a7e
No related branches found
No related tags found
No related merge requests found
......@@ -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
#----------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment