Now that gccas and gccld are just schell scripts, adjust the build ordering

for parallel builds so that we space out the large links.

llvm-svn: 34098
This commit is contained in:
Reid Spencer 2007-02-09 17:02:07 +00:00
parent 6bc8576e74
commit 49785b92f0
1 changed files with 10 additions and 11 deletions

View File

@ -8,17 +8,16 @@
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL := .. LEVEL := ..
# Note .. the tools are organized in triples consisting of one large and two # NOTE: The tools are organized into five groups of four consisting of one
# small executables. This is done to minimize memory load in parallel builds. # large and three small executables. This is done to minimize memory load
# Please retain this ordering. # in parallel builds. Please retain this ordering.
PARALLEL_DIRS := llvm-config llvm-upgrade \ PARALLEL_DIRS := llvm-config
opt llvm-as llvm-dis \ opt llvm-as llvm-dis llvm-upgrade \
llc llvm-ranlib llvm-ar \ llc llvm-ranlib llvm-ar llvm-nm \
lli llvm-link llvm-nm \ llvm-ld llvmc llvm-prof llvm-link \
bugpoint llvm-db llvm-extract \ lli gccas gccld llvm-extract llvm-db llvm2cpp \
gccas llvm-bcanalyzer llvm-stub \ bugpoint llvm-stub llvm-bcanalyzer llvm-stub \
gccld llvm2cpp \
llvm-ld llvmc llvm-prof
include $(LEVEL)/Makefile.config include $(LEVEL)/Makefile.config